Package org.apache.jackrabbit.test.config

Examples of org.apache.jackrabbit.test.config.LoginModuleConf


 
    protected SecurityConf parseSecurityConf(Element security)
            throws ConfException {
        String appName = getAttribute(security, Xml.APP_NAME_ATTRIBUTE);
        AccessManagerConf amc = parseAccessManagerConf(security);
        LoginModuleConf lmc = parseLoginModuleConf(security);
        return new SecurityConf(appName, amc, lmc);
    }
View Full Code Here


            throws ConfException {
        // Optional login module
        Element loginModule = getElement(security, Xml.LOGIN_MODULE_ELEMENT, false);

        if (loginModule != null) {
            return new LoginModuleConf(parseBeanConf(security, Xml.LOGIN_MODULE_ELEMENT));
        } else {
            return null;
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.test.config.LoginModuleConf

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.