Package org.apache.cocoon.pipeline.component

Examples of org.apache.cocoon.pipeline.component.Starter


        if (this.logger.isDebugEnabled()) {
            this.logger.debug("Invoking first component of " + this);
        }

        try {
            Starter starter = (Starter) this.components.getFirst();
            starter.execute();
        } finally {
            for (PipelineComponent pipelineComponent : this.getComponents()) {
                pipelineComponent.finish();
            }
        }
View Full Code Here


            this.logger.debug("Invoking first component of " + this);
        }

        RuntimeException exception = null;
        try {
            Starter starter = (Starter) this.components.getFirst();
            starter.execute();
        } catch (RuntimeException ex) {
            exception = ex;
            throw ex;
        } finally {
            for (PipelineComponent pipelineComponent : this.getComponents()) {
View Full Code Here

TOP

Related Classes of org.apache.cocoon.pipeline.component.Starter

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.