public interface ExtendedUserStorage
Extended user storage. Implement the interface and configure it into iserver to extend the user store for iserver. The class that implements this interface must add ExtendedUserStorageIdentification
annotation.
Modifier and Type | Method and Description |
---|---|
ExtendedUserInfo |
getUser(java.lang.String username)
Or expand the user information in the store.
|
boolean |
isValid(java.lang.String username, java.lang.String password)
Verifies that the username and password are correct.
|
boolean isValid(java.lang.String username, java.lang.String password)
Verifies that the username and password are correct.
username
- Needs to verify the username.password
- Needs to verify the password.ExtendedUserInfo getUser(java.lang.String username)
Or expand the user information in the store.
username
- Needs the username of information .