All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liveperson.ephemerals.deploy.DeploymentContext Maven / Gradle / Ivy

There is a newer version: 1.0.0.7
Show newest version
package com.liveperson.ephemerals.deploy;

/**
 * Created by waseemh on 9/26/16.
 */
public class DeploymentContext  {

    private final DeploymentHandler deploymentHandler;

    private final DeploymentConfiguration deploymentConfiguration;

    public DeploymentContext(DeploymentHandler deploymentHandler, DeploymentConfiguration deploymentConfiguration) {
        this.deploymentHandler = deploymentHandler;
        this.deploymentConfiguration = deploymentConfiguration;
    }

    public DeploymentHandler getDeploymentHandler() {
        return deploymentHandler;
    }

    public DeploymentConfiguration getDeploymentConfiguration() {
        return deploymentConfiguration;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy