All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.shinesolutions.aemorchestrator.model.ProxyDetails Maven / Gradle / Ivy

Go to download

Java application for orchestrating AEM infrastructure created using aem-aws-stack-builder

There is a newer version: 4.0.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy