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

com.heroku.sdk.deploy.lib.deploymemt.DeploymentDescriptor Maven / Gradle / Ivy

There is a newer version: 3.0.7
Show newest version
package com.heroku.sdk.deploy.lib.deploymemt;

import java.nio.file.Path;
import java.util.List;
import java.util.Map;

public final class DeploymentDescriptor {
    private String appName;
    private String version;
    private List buildpacks;
    private Map configVars;
    private Path sourceBlobPath;

    public DeploymentDescriptor(String appName, List buildpacks, Map configVars, Path sourceBlobPath, String version) {
        this.appName = appName;
        this.version = version;
        this.buildpacks = buildpacks;
        this.configVars = configVars;
        this.sourceBlobPath = sourceBlobPath;
    }

    public String getAppName() {
        return appName;
    }

    public String getVersion() {
        return version;
    }

    public List getBuildpacks() {
        return buildpacks;
    }

    public Map getConfigVars() {
        return configVars;
    }

    public Path getSourceBlobPath() {
        return sourceBlobPath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy