Author: beaton
Date: Sat May 16 01:13:00 2009
New Revision: 775406
URL: http://svn.apache.org/viewvc?rev=775406&view=rev
Log:
Fix build break from OAuthStore interface change.
Modified:
incubator/shindig/trunk/java/samples/src/test/java/org/apache/shindig/social/opensocial/jpa/spi/integration/JpaTestGuiceModule.java
Modified:
incubator/shindig/trunk/java/samples/src/test/java/org/apache/shindig/social/opensocial/jpa/spi/integration/JpaTestGuiceModule.java
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/java/samples/src/test/java/org/apache/shindig/social/opensocial/jpa/spi/integration/JpaTestGuiceModule.java?rev=775406&r1=775405&r2=775406&view=diff
==============================================================================
---
incubator/shindig/trunk/java/samples/src/test/java/org/apache/shindig/social/opensocial/jpa/spi/integration/JpaTestGuiceModule.java
(original)
+++
incubator/shindig/trunk/java/samples/src/test/java/org/apache/shindig/social/opensocial/jpa/spi/integration/JpaTestGuiceModule.java
Sat May 16 01:13:00 2009
@@ -123,29 +123,17 @@
throw new UnsupportedOperationException();
}
- /**
- * {...@inheritdoc}
- * @see
org.apache.shindig.social.opensocial.oauth.OAuthDataStore#disableToken(org.apache.shindig.social.opensocial.oauth.OAuthEntry)
- */
public void disableToken(OAuthEntry entry) {
throw new UnsupportedOperationException();
}
- /**
- * {...@inheritdoc}
- * @see
org.apache.shindig.social.opensocial.oauth.OAuthDataStore#generateRequestToken(java.lang.String,
java.lang.String)
- */
- public OAuthEntry generateRequestToken(String consumerKey, String
oauthVersion)
- throws OAuthProblemException {
+ public void removeToken(OAuthEntry entry) {
throw new UnsupportedOperationException();
}
- /**
- * {...@inheritdoc}
- * @see
org.apache.shindig.social.opensocial.oauth.OAuthDataStore#removeToken(org.apache.shindig.social.opensocial.oauth.OAuthEntry)
- */
- public void removeToken(OAuthEntry entry) {
- throw new UnsupportedOperationException();
+ public OAuthEntry generateRequestToken(String consumerKey, String
oauthVersion,
+ String signedCallbackUrl) {
+ return null;
}
}
}