This is an automated email from the ASF dual-hosted git repository.
martin_s pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva-redback-core.git
The following commit(s) were added to refs/heads/master by this push:
new 8a4932e Editing javadoc
8a4932e is described below
commit 8a4932e9a6222a7cb9a987093c45feb195c117fa
Author: Martin Stockhammer <[email protected]>
AuthorDate: Sun Jul 19 13:26:13 2020 +0200
Editing javadoc
---
.../org/apache/archiva/redback/rest/api/services/UserService.java | 4 ++++
.../apache/archiva/redback/rest/api/services/v2/UserService.java | 6 +-----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git
a/redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/services/UserService.java
b/redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/services/UserService.java
index 1fbc633..57291be 100644
---
a/redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/services/UserService.java
+++
b/redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/services/UserService.java
@@ -44,7 +44,11 @@ import javax.ws.rs.core.MediaType;
import java.util.Collection;
import java.util.List;
+/**
+ * This service is deprecated. Please use {@link
org.apache.archiva.redback.rest.api.services.v2.UserService}
+ */
@Path( "/userService/" )
+@Deprecated
public interface UserService
{
@Path( "getUser/{userName}" )
diff --git
a/redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/services/v2/UserService.java
b/redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/services/v2/UserService.java
index d5a8200..6bd4e2b 100644
---
a/redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/services/v2/UserService.java
+++
b/redback-integrations/redback-rest/redback-rest-api/src/main/java/org/apache/archiva/redback/rest/api/services/v2/UserService.java
@@ -111,7 +111,6 @@ public interface UserService
throws RedbackServiceException;
/**
- * @since 2.0
*/
@Path( "{userId}/lock" )
@POST
@@ -121,7 +120,6 @@ public interface UserService
throws RedbackServiceException;
/**
- * @since 2.0
*/
@Path( "{userId}/unlock" )
@GET
@@ -132,7 +130,6 @@ public interface UserService
/**
- * @since 2.0
*/
@Path( "{userId}/passwordStatus" )
@GET
@@ -143,8 +140,7 @@ public interface UserService
/**
* update only the current user and this fields: fullname, email, password.
- * the service verify the curent logged user with the one passed in the
method
- * @since 1.4
+ * The service verifies the current logged user with the one passed in the
method
*/
@Path( "{userId}" )
@PUT