You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by ja...@apache.org on 2011/08/17 09:46:23 UTC

svn commit: r1158550 - in /incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth: repository/ service/

Author: jasha
Date: Wed Aug 17 07:46:22 2011
New Revision: 1158550

URL: http://svn.apache.org/viewvc?rev=1158550&view=rev
Log:
RAVE-193 Remove redundant public modifiers in interfaces (Sonar)

Modified:
    incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/repository/OAuthConsumerStoreRepository.java
    incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/repository/OAuthTokenInfoRepository.java
    incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/service/OAuthConsumerStoreService.java
    incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/service/OAuthTokenInfoService.java

Modified: incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/repository/OAuthConsumerStoreRepository.java
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/repository/OAuthConsumerStoreRepository.java?rev=1158550&r1=1158549&r2=1158550&view=diff
==============================================================================
--- incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/repository/OAuthConsumerStoreRepository.java (original)
+++ incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/repository/OAuthConsumerStoreRepository.java Wed Aug 17 07:46:22 2011
@@ -34,5 +34,5 @@ public interface OAuthConsumerStoreRepos
      * @param serviceName name of the service provider
      * @return {@link OAuthConsumerStore} or {@literal null} if none matches the criteria
      */
-    public OAuthConsumerStore findByUriAndServiceName(String gadgetUri, String serviceName);
+    OAuthConsumerStore findByUriAndServiceName(String gadgetUri, String serviceName);
 }

Modified: incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/repository/OAuthTokenInfoRepository.java
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/repository/OAuthTokenInfoRepository.java?rev=1158550&r1=1158549&r2=1158550&view=diff
==============================================================================
--- incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/repository/OAuthTokenInfoRepository.java (original)
+++ incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/repository/OAuthTokenInfoRepository.java Wed Aug 17 07:46:22 2011
@@ -37,7 +37,7 @@ public interface OAuthTokenInfoRepositor
      * @param serviceName name of the service provider
      * @return {@link OAuthTokenInfo} or {@literal null} if none matches the criteria
      */
-    public OAuthTokenInfo findOAuthTokenInfo(String userId, String appUrl, String moduleId,
+    OAuthTokenInfo findOAuthTokenInfo(String userId, String appUrl, String moduleId,
                                              String tokenName, String serviceName);
 
 }

Modified: incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/service/OAuthConsumerStoreService.java
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/service/OAuthConsumerStoreService.java?rev=1158550&r1=1158549&r2=1158550&view=diff
==============================================================================
--- incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/service/OAuthConsumerStoreService.java (original)
+++ incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/service/OAuthConsumerStoreService.java Wed Aug 17 07:46:22 2011
@@ -33,7 +33,7 @@ public interface OAuthConsumerStoreServi
      * @param serviceName name of the service provider
      * @return {@link OAuthConsumerStore} or {@literal null} if none matches the criteria
      */
-    public OAuthConsumerStore findByUriAndServiceName(String gadgetUri, String serviceName);
+    OAuthConsumerStore findByUriAndServiceName(String gadgetUri, String serviceName);
 
     /**
      * Persists {@link OAuthConsumerStore}
@@ -42,12 +42,12 @@ public interface OAuthConsumerStoreServi
      * @return persisted {@link OAuthConsumerStore}
      */
 
-    public OAuthConsumerStore save(OAuthConsumerStore oAuthConsumerStore);
+    OAuthConsumerStore save(OAuthConsumerStore oAuthConsumerStore);
 
     /**
      * Removes the {@link OAuthConsumerStore} from the database
      *
      * @param oAuthConsumerStore {@link OAuthConsumerStore} to delete
      */
-    public void delete(OAuthConsumerStore oAuthConsumerStore);
+    void delete(OAuthConsumerStore oAuthConsumerStore);
 }

Modified: incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/service/OAuthTokenInfoService.java
URL: http://svn.apache.org/viewvc/incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/service/OAuthTokenInfoService.java?rev=1158550&r1=1158549&r2=1158550&view=diff
==============================================================================
--- incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/service/OAuthTokenInfoService.java (original)
+++ incubator/rave/trunk/rave-shindig/src/main/java/org/apache/rave/gadgets/oauth/service/OAuthTokenInfoService.java Wed Aug 17 07:46:22 2011
@@ -35,7 +35,7 @@ public interface OAuthTokenInfoService {
      * @param serviceName name of the service provider
      * @return {@link OAuthTokenInfo} or {@literal null} if none matches the criteria
      */
-    public OAuthTokenInfo findOAuthTokenInfo(String userId, String appUrl, String moduleId,
+    OAuthTokenInfo findOAuthTokenInfo(String userId, String appUrl, String moduleId,
                                              String tokenName, String serviceName);
 
     /**