Package org.apache.cocoon.auth.impl

Examples of org.apache.cocoon.auth.impl.AnonymousSecurityHandler


    throws ConfigurationException {
        String handlerName = conf.getAttribute("security-handler", null);
        String storeName = conf.getAttribute("store", null);
        try {
            if ( handlerName == null ) {
                this.handler = new AnonymousSecurityHandler();
            } else {
                if ( !handlerName.startsWith(HANDLER_CONFIG_PREFIX) ) {
                    handlerName = HANDLER_CONFIG_PREFIX + handlerName;
                }
                this.handler = (SecurityHandler)this.manager.lookup(handlerName);
View Full Code Here

TOP

Related Classes of org.apache.cocoon.auth.impl.AnonymousSecurityHandler

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.