Package org.craftercms.deployer.impl
Interface DeploymentPipelineFactory
- All Known Implementing Classes:
DeploymentPipelineFactoryImpl
public interface DeploymentPipelineFactory
Factory that uses target-specific YAML configuration and Spring configuration to create the
DeploymentPipeline
for a target.- Author:
- avasquez
-
Method Summary
Modifier and TypeMethodDescriptiongetPipeline
(org.apache.commons.configuration2.HierarchicalConfiguration<org.apache.commons.configuration2.tree.ImmutableNode> configuration, org.springframework.context.ApplicationContext applicationContext, String pipelinePropertyName) Creates aDeploymentPipeline
based on the specified configuration
-
Method Details
-
getPipeline
DeploymentPipeline getPipeline(org.apache.commons.configuration2.HierarchicalConfiguration<org.apache.commons.configuration2.tree.ImmutableNode> configuration, org.springframework.context.ApplicationContext applicationContext, String pipelinePropertyName) throws org.craftercms.commons.config.ConfigurationException, DeployerException Creates aDeploymentPipeline
based on the specified configuration- Parameters:
configuration
- the target's YAML configurationapplicationContext
- the target's application contextpipelinePropertyName
- the name of the pipeline property in the YAML configuration- Returns:
- the deployment pipeline
- Throws:
org.craftercms.commons.config.ConfigurationException
- if a configuration related exception occursDeployerException
- if a general error occurs
-