Package de.innovationgate.webgate.api.auth

Examples of de.innovationgate.webgate.api.auth.ConfigurationException


        _dbkey = ((String) params.get(COPTION_DBKEY)).toLowerCase();
       
        configure(params);

        if (_dbkey == null) {
            throw new ConfigurationException("The dbkey of the authentication db is not specified");
        }

        if (_scriptCollect == null && _userRootDoc == null) {
            throw new ConfigurationException("Either a collection script or a root document for login documents must be specified");
        }

        // Try to fetch target db at this time. May get connected later
        registerWithTargetDatabase((WGDatabase) _core.getContentdbs().get(_dbkey));
View Full Code Here

TOP

Related Classes of de.innovationgate.webgate.api.auth.ConfigurationException

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.