public interface LegacyUserManager
| Modifier and Type | Method and Description |
|---|---|
AuthenticationData |
authenticateLegacyUser(java.lang.String loginName,
java.lang.String password,
boolean rememberMe)
Authenticates the provided credentials in the legacy database user table
|
LegacyUser |
findLegacyUserByLogin(java.lang.String loginName)
Returns the User in legacy database with the provided login name
|
AuthenticationData authenticateLegacyUser(java.lang.String loginName, java.lang.String password, boolean rememberMe) throws AuthenticationException, java.lang.IllegalArgumentException, NotFoundException
loginName - User's login namepassword - User's passwordrememberMe - true when applicable, create a cookie for this user; otherwise falseAuthenticationExceptionjava.lang.IllegalArgumentExceptionNotFoundExceptionInvalidPartnerExceptionLegacyUser findLegacyUserByLogin(java.lang.String loginName) throws NotFoundException
loginName - The legacy user's login nameNotFoundException - No user is found with that login name.