Package org.apache.cocoon.webapps.authentication.components

Examples of org.apache.cocoon.webapps.authentication.components.ApplicationHandler


            this.authLoadResource = handler.getLoadResource();
            this.authSaveResource = handler.getSaveResource();
            this.authLoadResourceParameters = handler.getLoadResourceParameters();
            this.authSaveResourceParameters = handler.getSaveResourceParameters();
            if (this.applicationName != null) {
                ApplicationHandler appHandler = (ApplicationHandler)handler.getApplications().get(this.applicationName);
                this.loadResource = appHandler.getLoadResource();
                this.saveResource = appHandler.getSaveResource();
                this.loadResourceParameters = appHandler.getLoadResourceParameters();
                this.saveResourceParameters = appHandler.getSaveResourceParameters();
            }

        } catch (ComponentException ce) {
            throw new ProcessingException("Unable to lookup the resource connector.", ce);
        } finally {
View Full Code Here

TOP

Related Classes of org.apache.cocoon.webapps.authentication.components.ApplicationHandler

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.