
org.nakedobjects.runtime.authentication.standard.ldap.LdapAuthenticationManagerInstaller Maven / Gradle / Ivy
package org.nakedobjects.runtime.authentication.standard.ldap;
import org.nakedobjects.metamodel.config.NakedObjectConfiguration;
import org.nakedobjects.runtime.authentication.standard.Authenticator;
import org.nakedobjects.runtime.authentication.standard.StandardAuthenticationManagerInstallerAbstract;
public class LdapAuthenticationManagerInstaller extends StandardAuthenticationManagerInstallerAbstract {
public LdapAuthenticationManagerInstaller() {
super("ldap");
}
@Override
protected Authenticator createAuthenticator(NakedObjectConfiguration configuration) {
return new LdapAuthenticator(configuration);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy