Package org.apache.cocoon.portal.event.aspect

Examples of org.apache.cocoon.portal.event.aspect.EventAspectChain


    public void processEvents()
    throws ProcessingException {
        if ( this.configuration != null ) {
            try {
                this.aspectSelector = (ComponentSelector) this.manager.lookup( EventAspect.ROLE+"Selector");
                this.chain = new EventAspectChain();
                this.chain.configure(this.aspectSelector, this.configuration.getChild("event-aspects"));
            } catch (ConfigurationException ce) {
                throw new ProcessingException("Unable configure component.", ce);
            } catch (ComponentException ce) {
                throw new ProcessingException("Unable to lookup component.", ce);
View Full Code Here

TOP

Related Classes of org.apache.cocoon.portal.event.aspect.EventAspectChain

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.