NIHVIVO-2601 Create internal login for systems that only reveal the external authentication.

This commit is contained in:
j2blake 2011-05-11 16:02:43 +00:00
parent 53c3c982bb
commit 7fed5babcf
6 changed files with 201 additions and 0 deletions

View file

@ -193,4 +193,10 @@ public class AuthenticatorStub extends Authenticator {
"AuthenticatorStub.recordLoginWithoutUserAccount() not implemented.");
}
@Override
public boolean isPasswordChangeRequired(String username) {
throw new RuntimeException(
"AuthenticatorStub.isPasswordChangeRequired() not implemented.");
}
}