GUAC-586: Fix comments incorrectly referring to the auth provider identifier as an "index".

This commit is contained in:
Michael Jumper
2015-08-31 00:05:53 -07:00
parent 7a9b3a5cab
commit ce064cfc68

View File

@@ -133,8 +133,8 @@ public class UserRESTService {
* performing the operation. * performing the operation.
* *
* @param authProviderIdentifier * @param authProviderIdentifier
* The index of the UserContext within the overall List of available * The unique identifier of the AuthenticationProvider associated with
* UserContexts in which the requested user is to be created. * the UserContext from which the users are to be retrieved.
* *
* @param permissions * @param permissions
* The set of permissions to filter with. A user must have one or more * The set of permissions to filter with. A user must have one or more
@@ -191,8 +191,8 @@ public class UserRESTService {
* performing the operation. * performing the operation.
* *
* @param authProviderIdentifier * @param authProviderIdentifier
* The index of the UserContext within the overall List of available * The unique identifier of the AuthenticationProvider associated with
* UserContexts in which the requested user is to be created. * the UserContext from which the requested user is to be retrieved.
* *
* @param username * @param username
* The username of the user to retrieve. * The username of the user to retrieve.
@@ -227,8 +227,8 @@ public class UserRESTService {
* performing the operation. * performing the operation.
* *
* @param authProviderIdentifier * @param authProviderIdentifier
* The index of the UserContext within the overall List of available * The unique identifier of the AuthenticationProvider associated with
* UserContexts in which the requested user is to be created. * the UserContext in which the requested user is to be created.
* *
* @param user * @param user
* The new user to create. * The new user to create.
@@ -271,8 +271,8 @@ public class UserRESTService {
* performing the operation. * performing the operation.
* *
* @param authProviderIdentifier * @param authProviderIdentifier
* The index of the UserContext within the overall List of available * The unique identifier of the AuthenticationProvider associated with
* UserContexts in which the requested user is to be found. * the UserContext in which the requested user is to be updated.
* *
* @param username * @param username
* The username of the user to update. * The username of the user to update.
@@ -331,8 +331,8 @@ public class UserRESTService {
* performing the operation. * performing the operation.
* *
* @param authProviderIdentifier * @param authProviderIdentifier
* The index of the UserContext within the overall List of available * The unique identifier of the AuthenticationProvider associated with
* UserContexts in which the requested user is to be found. * the UserContext in which the requested user is to be updated.
* *
* @param username * @param username
* The username of the user to update. * The username of the user to update.
@@ -403,8 +403,8 @@ public class UserRESTService {
* performing the operation. * performing the operation.
* *
* @param authProviderIdentifier * @param authProviderIdentifier
* The index of the UserContext within the overall List of available * The unique identifier of the AuthenticationProvider associated with
* UserContexts in which the requested user is to be found. * the UserContext from which the requested user is to be deleted.
* *
* @param username * @param username
* The username of the user to delete. * The username of the user to delete.
@@ -444,8 +444,8 @@ public class UserRESTService {
* performing the operation. * performing the operation.
* *
* @param authProviderIdentifier * @param authProviderIdentifier
* The index of the UserContext within the overall List of available * The unique identifier of the AuthenticationProvider associated with
* UserContexts in which the requested user is to be found. * the UserContext in which the requested user is to be found.
* *
* @param username * @param username
* The username of the user to retrieve permissions for. * The username of the user to retrieve permissions for.
@@ -539,8 +539,8 @@ public class UserRESTService {
* performing the operation. * performing the operation.
* *
* @param authProviderIdentifier * @param authProviderIdentifier
* The index of the UserContext within the overall List of available * The unique identifier of the AuthenticationProvider associated with
* UserContexts in which the requested user is to be found. * the UserContext in which the requested user is to be found.
* *
* @param username * @param username
* The username of the user to modify the permissions of. * The username of the user to modify the permissions of.