Interface UserManagementAdapter
- All Known Implementing Classes:
InternalUserManagementAdapterImpl
public interface UserManagementAdapter
Adapter to implement for user storage operations.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteUser
(User user, UserContext context) Deletes an existing user.void
updateUser
(User user, UserContext context) Updates an existing user.
-
Method Details
-
updateUser
Updates an existing user.- Parameters:
user
- User to updatecontext
- User context- Throws:
DirectoryException
- When a problem comes from the storage layer
-
deleteUser
Deletes an existing user.- Parameters:
user
- User to delete.context
- User context- Throws:
DirectoryException
- When a problem comes from the storage layer
-