com.shinesolutions.aemorchestrator.model.ProxyDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-orchestrator Show documentation
Show all versions of aem-orchestrator Show documentation
Java application for orchestrating AEM infrastructure created using aem-aws-stack-builder
package com.shinesolutions.aemorchestrator.model;
public class ProxyDetails {
private String host;
private int port;
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public ProxyDetails withHost(String host) {
this.setHost(host);
return this;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
public ProxyDetails withPort(int port) {
this.setPort(port);
return this;
}
}