com.heroku.sdk.deploy.lib.deploymemt.DeploymentDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heroku-deploy Show documentation
Show all versions of heroku-deploy Show documentation
Library for deploying Java applications to Heroku
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;
}
}