Searched defs:authenticatorFactory (Results 1 - 2 of 2) sorted by relevance

/forgerock/openidm-v4/openidm-authnfilter/src/main/java/org/forgerock/openidm/auth/modules/
H A DIDMAuthModule.java40 public AsyncServerAuthModule newInstance(AuthenticatorFactory authenticatorFactory) {
47 public AsyncServerAuthModule newInstance(AuthenticatorFactory authenticatorFactory) {
61 public AsyncServerAuthModule newInstance(AuthenticatorFactory authenticatorFactory) {
68 public AsyncServerAuthModule newInstance(AuthenticatorFactory authenticatorFactory) {
69 return newInstance(authenticatorFactory, this);
73 public AsyncServerAuthModule newInstance(AuthenticatorFactory authenticatorFactory, IDMAuthModule module) {
74 return new DelegatedAuthModule(authenticatorFactory, module);
80 public AsyncServerAuthModule newInstance(AuthenticatorFactory authenticatorFactory) {
81 return DELEGATED.newInstance(authenticatorFactory, this);
87 public AsyncServerAuthModule newInstance(AuthenticatorFactory authenticatorFactory) {
127 newInstance(AuthenticatorFactory authenticatorFactory) argument
129 newInstance(AuthenticatorFactory authenticatorFactory, IDMAuthModule module) argument
[all...]
H A DDelegatedAuthModule.java71 private final AuthenticatorFactory authenticatorFactory; field in class:DelegatedAuthModule
82 * @param authenticatorFactory
84 public DelegatedAuthModule(AuthenticatorFactory authenticatorFactory, IDMAuthModule moduleId) { argument
85 Reject.ifNull(authenticatorFactory, "AuthenticationFactory cannot be null");
86 this.authenticatorFactory = authenticatorFactory;
116 authenticator = authenticatorFactory.apply(this.options);

Completed in 79 milliseconds