]> source.dussan.org Git - archiva.git/commitdiff
@since 1.5 is now @since 2.0
authorOlivier Lamy <olamy@apache.org>
Wed, 11 Apr 2012 16:16:57 +0000 (16:16 +0000)
committerOlivier Lamy <olamy@apache.org>
Wed, 11 Apr 2012 16:16:57 +0000 (16:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1324841 13f79535-47bb-0310-9956-ffa450edef68

redback-integrations/redback-common-integrations/src/main/java/org/apache/archiva/redback/integration/checks/security/AdminAutoCreateCheck.java
redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/model/ApplicationRoles.java
redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/model/RoleTemplate.java
redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/model/User.java
redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/services/RoleManagementService.java
redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/services/UserService.java
redback-integrations/redback-rest/redback-rest-services/src/main/java/org/apache/archiva/redback/rest/services/interceptors/JacksonJsonConfigurator.java

index e560efe8015822ed2fa06b39b01426080c3192a2..2ce545f16da183e098e5197f42fed78bd7b4d41b 100644 (file)
@@ -64,7 +64,7 @@ public class User
     /**
      * for roles update only <b>not return on user read</b>
      *
-     * @since 1.5
+     * @since 2.0
      */
     private List<String> assignedRoles;
 
index 0a48f2212b7b800a211bd3afbb19a5288d8d66f4..8cea4fd83bdafae5b805d9243661b068f60ea420 100644 (file)
@@ -224,7 +224,7 @@ public interface RoleManagementService
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_RBAC_ADMIN_OPERATION )
     /**
-     * @since 1.5
+     * @since 2.0
      */
     List<Role> getAllRoles()
         throws RedbackServiceException;
@@ -234,7 +234,7 @@ public interface RoleManagementService
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_RBAC_ADMIN_OPERATION )
     /**
-     * @since 1.5
+     * @since 2.0
      */
     List<Role> getDetailedAllRoles()
         throws RedbackServiceException;
@@ -245,7 +245,7 @@ public interface RoleManagementService
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_RBAC_ADMIN_OPERATION )
     /**
-     * @since 1.5
+     * @since 2.0
      */
     List<Application> getApplications( @PathParam( "username" ) String username )
         throws RedbackServiceException;
@@ -256,7 +256,7 @@ public interface RoleManagementService
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_RBAC_ADMIN_OPERATION )
     /**
-     * @since 1.5
+     * @since 2.0
      */
     Role getRole( @PathParam( "roleName" ) String roleName )
         throws RedbackServiceException;
@@ -266,7 +266,7 @@ public interface RoleManagementService
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_RBAC_ADMIN_OPERATION )
     /**
-     * @since 1.5
+     * @since 2.0
      */
     Boolean updateRoleDescription( @QueryParam( "roleName" ) String roleName,
                                    @QueryParam( "roleDescription" ) String description )
@@ -279,7 +279,7 @@ public interface RoleManagementService
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_RBAC_ADMIN_OPERATION )
     /**
      * update users assigned to a role
-     * @since 1.5
+     * @since 2.0
      */
     Boolean updateRoleUsers( Role role )
         throws RedbackServiceException;
@@ -289,7 +289,7 @@ public interface RoleManagementService
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML } )
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_RBAC_ADMIN_OPERATION )
     /**
-     * @since 1.5
+     * @since 2.0
      */
     List<ApplicationRoles> getApplicationRoles( @PathParam( "username" ) String username )
         throws RedbackServiceException;
@@ -301,7 +301,7 @@ public interface RoleManagementService
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_RBAC_ADMIN_OPERATION )
     /**
      * update roles assigned to a user
-     * @since 1.5
+     * @since 2.0
      */
     Boolean updateUserRoles( User user )
         throws RedbackServiceException;
index 239169f90ad2c1ebf20afaa381ef0e1ca96c1c7d..9c7cc06ac2a9a72391b489656d4a75b2982b1273 100644 (file)
@@ -101,7 +101,7 @@ public interface UserService
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_USER_EDIT_OPERATION )
     /**
-     * @since 1.5
+     * @since 2.0
      */
     Boolean lockUser( @PathParam( "username" ) String username )
         throws RedbackServiceException;
@@ -111,7 +111,7 @@ public interface UserService
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_USER_EDIT_OPERATION )
     /**
-     * @since 1.5
+     * @since 2.0
      */
     Boolean unlockUser( @PathParam( "username" ) String username )
         throws RedbackServiceException;
@@ -122,7 +122,7 @@ public interface UserService
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_USER_EDIT_OPERATION )
     /**
-     * @since 1.5
+     * @since 2.0
      */
     Boolean passwordChangeRequired( @PathParam( "username" ) String username )
         throws RedbackServiceException;
@@ -132,7 +132,7 @@ public interface UserService
     @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } )
     @RedbackAuthorization( permissions = RedbackRoleConstants.USER_MANAGEMENT_USER_EDIT_OPERATION )
     /**
-     * @since 1.5
+     * @since 2.0
      */
     Boolean passwordChangeNotRequired( @PathParam( "username" ) String username )
         throws RedbackServiceException;