Package com.axway.apim.adapter.user
Class APIManagerUserAdapter
- java.lang.Object
-
- com.axway.apim.adapter.user.APIManagerUserAdapter
-
public class APIManagerUserAdapter extends Object
-
-
Constructor Summary
Constructors Constructor Description APIManagerUserAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidchangePassword(String newPassword, User actualUser)UsercreateOrUpdateUser(User desiredUser, User actualUser)UsercreateUser(User desiredUser)voiddeleteUser(User user)UsergetUser(UserFilter filter)UsergetUserForId(String userId)UsergetUserForLoginName(String loginName)List<User>getUsers(UserFilter filter)UserupdateUser(User desiredUser, User actualUser)
-
-
-
Method Detail
-
getUsers
public List<User> getUsers(UserFilter filter) throws AppException
- Throws:
AppException
-
getUserForLoginName
public User getUserForLoginName(String loginName) throws AppException
- Throws:
AppException
-
getUserForId
public User getUserForId(String userId) throws AppException
- Throws:
AppException
-
getUser
public User getUser(UserFilter filter) throws AppException
- Throws:
AppException
-
updateUser
public User updateUser(User desiredUser, User actualUser) throws AppException
- Throws:
AppException
-
createUser
public User createUser(User desiredUser) throws AppException
- Throws:
AppException
-
createOrUpdateUser
public User createOrUpdateUser(User desiredUser, User actualUser) throws AppException
- Throws:
AppException
-
changePassword
public void changePassword(String newPassword, User actualUser) throws AppException
- Throws:
AppException
-
deleteUser
public void deleteUser(User user) throws AppException
- Throws:
AppException
-
-