]> source.dussan.org Git - archiva.git/commitdiff
authz not mandatory for search: repositories list limited for guest
authorOlivier Lamy <olamy@apache.org>
Sun, 26 Feb 2012 16:58:30 +0000 (16:58 +0000)
committerOlivier Lamy <olamy@apache.org>
Sun, 26 Feb 2012 16:58:30 +0000 (16:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1293870 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/SearchService.java

index 6ee916a394ffedd773b0a5fdd783657a8aafd516..4f6f06e95325fe3fab76d4dc0ab9f7563ff0022e 100644 (file)
@@ -48,7 +48,7 @@ public interface SearchService
     @Path( "quickSearch" )
     @GET
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
-    @RedbackAuthorization( noPermission = true, noRestriction = false )
+    @RedbackAuthorization( noPermission = true, noRestriction = true )
     /**
      * <b>search will be apply on all repositories the current user has karma</b>
      */
@@ -58,7 +58,7 @@ public interface SearchService
     @Path( "getArtifactVersions" )
     @GET
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
-    @RedbackAuthorization( noPermission = true, noRestriction = false )
+    @RedbackAuthorization( noPermission = true, noRestriction = true )
     /**
      * <b>search will be apply on all repositories the current user has karma</b>
      */
@@ -70,7 +70,7 @@ public interface SearchService
     @Path( "searchArtifacts" )
     @POST
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
-    @RedbackAuthorization( noPermission = true, noRestriction = false )
+    @RedbackAuthorization( noPermission = true, noRestriction = true )
     /**
      * If searchRequest contains repositories, the search will be done only on those repositories.
      * <b>if no repositories, the search will be apply on all repositories the current user has karma</b>