io.pivotal.services.plugin.CfProxySettingsDetail 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 org.cloudfoundry.Nullable;
import org.immutables.value.Value;
/**
* Details of the proxy settings
*
* @author Andreas Schilling
*/
@Value.Immutable(copy = true)
public abstract class CfProxySettingsDetail {
public abstract String proxyHost();
public abstract Integer proxyPort();
@Nullable
public abstract String proxyUser();
@Nullable
public abstract String proxyPassword();
}