io.pivotal.services.plugin.CfUserProvidedService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ya-cf-app-gradle-plugin Show documentation
Show all versions of ya-cf-app-gradle-plugin Show documentation
Gradle Plugin to push an application to Cloud Foundry
package io.pivotal.services.plugin;
import java.util.Map;
public class CfUserProvidedService {
private String instanceName;
private Map credentials;
private Integer completionTimeout;
public String getInstanceName() {
return instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public Map getCredentials() {
return credentials;
}
public void setCredentials(Map credentials) {
this.credentials = credentials;
}
public Integer getCompletionTimeout() {
return completionTimeout;
}
public void setCompletionTimeout(Integer completionTimeout) {
this.completionTimeout = completionTimeout;
}
}