/**
* The standard authentication manager, configured with the default authenticator (allows all requests through).
*/
@Override
protected AuthenticationManager obtainAuthenticationManager(DeploymentType deploymentType) throws IsisSystemException {
final AuthenticationManagerStandard authenticationManager = new AuthenticationManagerStandard(getConfiguration());
Authenticator authenticator = new AuthenticatorBypass(configuration);
authenticationManager.addAuthenticator(authenticator);
return authenticationManager;
}