Package org.apache.jackrabbit.oak.security.authentication

Examples of org.apache.jackrabbit.oak.security.authentication.AuthenticationConfigurationImpl


    }

    @Nonnull
    @Override
    public AuthenticationConfiguration getAuthenticationConfiguration() {
        return new AuthenticationConfigurationImpl(this, getOptions(PARAM_AUTHENTICATION_OPTIONS));
    }
View Full Code Here


     */
    public SecurityProviderImpl(@Nonnull ConfigurationParameters configuration) {
        checkNotNull(configuration);
        this.configuration = configuration;

        authenticationConfiguration = new AuthenticationConfigurationImpl(this);
        authorizationConfiguration = new AuthorizationConfigurationImpl(this);
        userConfiguration = new UserConfigurationImpl(this);
        principalConfiguration = new PrincipalConfigurationImpl(this);
        privilegeConfiguration = new PrivilegeConfigurationImpl();
        tokenConfiguration = new TokenConfigurationImpl(this);
View Full Code Here

        }
    }

    @Nonnull
    private AuthenticationConfiguration getAuthenticationConfiguration() {
        return new AuthenticationConfigurationImpl(this);
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.security.authentication.AuthenticationConfigurationImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.