Package org.apache.jackrabbit.oak.security

Examples of org.apache.jackrabbit.oak.security.OakConfiguration


        }
        return securityProvider;
    }

    protected Configuration getConfiguration() {
        return new OakConfiguration();
    }
View Full Code Here


            }
        } catch (SecurityException e) {
            log.info("Failed to retrieve login configuration: using default. " + e);
        }
        if (loginConfig == null) {
            loginConfig = new OakConfiguration(options); // TODO: define configuration structure
        }
        return new LoginContextProviderImpl(appName, loginConfig, nodeStore, indexProvider, securityProvider);
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.security.OakConfiguration

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.