return identityManager;
}
@Override
public boolean login(final String username, final String password) {
final Account account = identityManager.verify(username, new PasswordCredential(password.toCharArray()));
if (account == null) {
return false;
}
authenticationComplete(account, programaticMechName, true);