public interface UserIdentityManagementInterface
| Modifier and Type | Method and Description |
|---|---|
void |
addIdentityToProfile(String userId,
String profileGUID,
String newIdentity)
Link a user identity to a profile.
|
void |
createUserIdentity(String userId,
String newIdentity)
Create a UserIdentity.
|
void |
removeIdentityFromProfile(String userId,
String profileGUID,
String obsoleteIdentity)
Remove a user identity object.
|
void |
removeUserIdentity(String userId,
String obsoleteIdentity)
Remove a user identity object.
|
void createUserIdentity(String userId, String newIdentity) throws InvalidParameterException, PropertyServerException, UserNotAuthorizedException
userId - the name of the calling user.newIdentity - userId for the new userIdentity.InvalidParameterException - one of the parameters is invalid.PropertyServerException - there is a problem retrieving information from the property server(s).UserNotAuthorizedException - the requesting user is not authorized to issue this request.void addIdentityToProfile(String userId, String profileGUID, String newIdentity) throws InvalidParameterException, PropertyServerException, UserNotAuthorizedException
userId - the name of the calling user.profileGUID - the profile to add the identity to.newIdentity - additional userId for the profile.InvalidParameterException - one of the parameters is invalid.PropertyServerException - there is a problem retrieving information from the property server(s).UserNotAuthorizedException - the requesting user is not authorized to issue this request.void removeIdentityFromProfile(String userId, String profileGUID, String obsoleteIdentity) throws InvalidParameterException, PropertyServerException, UserNotAuthorizedException
userId - the name of the calling user.profileGUID - profile to remove it from.obsoleteIdentity - user identity to remove.InvalidParameterException - one of the parameters is invalid.PropertyServerException - there is a problem retrieving information from the property server(s).UserNotAuthorizedException - the requesting user is not authorized to issue this request.void removeUserIdentity(String userId, String obsoleteIdentity) throws InvalidParameterException, PropertyServerException, UserNotAuthorizedException
userId - the name of the calling user.obsoleteIdentity - user identity to remove.InvalidParameterException - one of the parameters is invalid.PropertyServerException - there is a problem retrieving information from the property server(s).UserNotAuthorizedException - the requesting user is not authorized to issue this request.Copyright © 2018–2020 ODPi. All rights reserved.