public class Staging extends Object
| Constructor and Description |
|---|
Staging()
Default staging: No command, default buildpack
|
Staging(String command,
String buildpackUrl) |
Staging(String command,
String buildpackUrl,
String detectedBuildpack) |
Staging(String command,
String buildpackUrl,
String stack,
Integer healthCheckTimeout) |
Staging(String command,
String buildpackUrl,
String stack,
Integer healthCheckTimeout,
String detectedBuildpack) |
| Modifier and Type | Method and Description |
|---|---|
String |
getBuildpackUrl() |
String |
getCommand() |
String |
getDetectedBuildpack() |
Integer |
getHealthCheckTimeout() |
String |
getStack() |
String |
toString() |
public Staging()
public Staging(String command, String buildpackUrl)
command - the application command; may be nullbuildpackUrl - a custom buildpack url (e.g. https://github.com/cloudfoundry/java-buildpack.git); may be nullpublic Staging(String command, String buildpackUrl, String detectedBuildpack)
command - the application command; may be nullbuildpackUrl - a custom buildpack url (e.g. https://github.com/cloudfoundry/java-buildpack.git); may be nulldetectedBuildpack - raw, free-form information regarding a detected buildpack. It is a read-only property, and should not be set except when parsing a response. May be null.public Staging(String command, String buildpackUrl, String stack, Integer healthCheckTimeout)
command - the application command; may be nullbuildpackUrl - a custom buildpack url (e.g. https://github.com/cloudfoundry/java-buildpack.git); may be nullstack - the stack to use when staging the application; may be nullhealthCheckTimeout - the amount of time the platform should wait when verifying that an app started; may be nullpublic Staging(String command, String buildpackUrl, String stack, Integer healthCheckTimeout, String detectedBuildpack)
command - the application command; may be nullbuildpackUrl - a custom buildpack url (e.g. https://github.com/cloudfoundry/java-buildpack.git); may be nullstack - the stack to use when staging the application; may be nullhealthCheckTimeout - the amount of time the platform should wait when verifying that an app started; may be nulldetectedBuildpack - raw, free-form information regarding a detected buildpack. It is a read-only property, and should not be set except when parsing a response. May be null.public String getCommand()
public String getBuildpackUrl()
public String getDetectedBuildpack()
public String getStack()
public Integer getHealthCheckTimeout()
Copyright © 2015. All rights reserved.