Package | Description |
---|---|
org.glassfish.security.services.spi.authentication |
Modifier and Type | Method and Description |
---|---|
void |
UserStoreProvider.addAttributeValues(String uid,
Attributes attributes,
boolean replace)
Add the given attribute values to the user entry.
|
void |
UserStoreProvider.addUsersToGroup(Set<String> uids,
String group)
Add the set of users to the specified group.
|
void |
UserStoreProvider.addUserToGroups(String uid,
Set<String> groups)
Add the specified user to the set of groups.
|
void |
UserStoreProvider.changePassword(String uid,
char[] oldPwd,
char[] newPwd)
Change the password for the specified user.
|
String |
UserStoreProvider.createGroup(String groupName)
Create a new group.
|
String |
UserStoreProvider.createUser(String name,
char[] pwd,
Attributes attributes)
Create a new user and return the unique ID assigned.
|
void |
UserStoreProvider.deleteGroup(String uid)
Delete a group.
|
void |
UserStoreProvider.deleteUser(String uid)
Remove the specified user.
|
UserStoreProvider.GroupEntry |
UserStoreProvider.lookupGroupByUid(String uid)
Get the GroupEntry for the specified group.
|
UserStoreProvider.ResultSet<UserStoreProvider.GroupEntry> |
UserStoreProvider.lookupGroupsByName(String name)
Get the GroupEntry(s) for the specified group name.
|
UserStoreProvider.UserEntry |
UserStoreProvider.lookupUserByUid(String uid,
boolean isGetGroups,
Set<String> attributeNames)
Lookup a user by unique ID.
|
UserStoreProvider.ResultSet<UserStoreProvider.UserEntry> |
UserStoreProvider.lookupUsersByName(String name,
boolean isGetGroups,
Set<String> attributeNames)
Lookup users by name.
|
void |
UserStoreProvider.removeAttributes(String uid,
Set<String> attributeNames)
Remove the given attributes from the user entry.
|
void |
UserStoreProvider.removeAttributeValues(String uid,
Attributes attributes)
Remove the given attribute values from the user entry.
|
void |
UserStoreProvider.removeUserFromGroups(String uid,
Set<String> groups)
Remove the specified user from the set of groups.
|
void |
UserStoreProvider.removeUsersFromGroup(Set<String> uids,
String group)
Remove the set of users from the specified group.
|
Copyright © 2019. All rights reserved.