Uses of Class
org.glassfish.security.services.spi.authentication.UserStoreException
Packages that use UserStoreException
-
Uses of UserStoreException in org.glassfish.security.services.spi.authentication
Methods in org.glassfish.security.services.spi.authentication that throw UserStoreExceptionModifier and TypeMethodDescriptionvoidUserStoreProvider.addAttributeValues(String uid, Attributes attributes, boolean replace) Add the given attribute values to the user entry.voidUserStoreProvider.addUsersToGroup(Set<String> uids, String group) Add the set of users to the specified group.voidUserStoreProvider.addUserToGroups(String uid, Set<String> groups) Add the specified user to the set of groups.voidUserStoreProvider.changePassword(String uid, char[] oldPwd, char[] newPwd) Change the password for the specified user.UserStoreProvider.createGroup(String groupName) Create a new group.UserStoreProvider.createUser(String name, char[] pwd, Attributes attributes) Create a new user and return the unique ID assigned.voidUserStoreProvider.deleteGroup(String uid) Delete a group.voidUserStoreProvider.deleteUser(String uid) Remove the specified user.UserStoreProvider.lookupGroupByUid(String uid) Get the GroupEntry for the specified group.UserStoreProvider.lookupGroupsByName(String name) Get the GroupEntry(s) for the specified group name.UserStoreProvider.lookupUserByUid(String uid, boolean isGetGroups, Set<String> attributeNames) Lookup a user by unique ID.UserStoreProvider.lookupUsersByName(String name, boolean isGetGroups, Set<String> attributeNames) Lookup users by name.voidUserStoreProvider.removeAttributes(String uid, Set<String> attributeNames) Remove the given attributes from the user entry.voidUserStoreProvider.removeAttributeValues(String uid, Attributes attributes) Remove the given attribute values from the user entry.voidUserStoreProvider.removeUserFromGroups(String uid, Set<String> groups) Remove the specified user from the set of groups.voidUserStoreProvider.removeUsersFromGroup(Set<String> uids, String group) Remove the set of users from the specified group.