All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nakedobjects.plugins.hibernate.authentication.DatabaseAuthenticationManagerInstaller Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.plugins.hibernate.authentication;


import org.nakedobjects.metamodel.config.NakedObjectConfiguration;
import org.nakedobjects.runtime.authentication.standard.Authenticator;
import org.nakedobjects.runtime.authentication.standard.StandardAuthenticationManagerInstallerAbstract;


public class DatabaseAuthenticationManagerInstaller extends StandardAuthenticationManagerInstallerAbstract {


    public DatabaseAuthenticationManagerInstaller() {
        super("database");
    }

    @Override
    protected Authenticator createAuthenticator(NakedObjectConfiguration configuration) {
        return new DatabaseAuthenticator(configuration);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy