public interface UserService
| Modifier and Type | Method and Description |
|---|---|
BasicUser |
findUser(String uniqueId) |
Set<BasicUser> |
searchForUserByEmail(String email)
Search for a set of users via
BasicUser.getEmail(). |
Set<BasicUser> |
searchForUserByName(String name)
Search for a set of users via
BasicUser.getDisplayName(). |
BasicUser findUser(String uniqueId)
uniqueId - The BasicUser.getUniqueId() for the user to findSet<BasicUser> searchForUserByName(String name)
BasicUser.getDisplayName(). It is up to
the implementation to parse the name parameter to return the best result set based
on the name or name fragment.name - The name or name fragment to search on.ToManyResultsException - If more results than the implementation's limit are found, used to prevent using this service to spider available usersSet<BasicUser> searchForUserByEmail(String email)
BasicUser.getEmail(). It is up to
the implementation to parse the email parameter to return the best result set based
on the email or email fragment.email - The email or email fragment to search on.ToManyResultsException - If more results than the implementation's limit are found, used to prevent using this service to spider available usersCopyright © 2016 Jasig. All Rights Reserved.