org.zodiac.sdk.nio.channeling.ChannelingProxy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zodiac-sdk-nio Show documentation
Show all versions of zodiac-sdk-nio Show documentation
Zodiac SDK NIO2(New Non-Blocking IO)
package org.zodiac.sdk.nio.channeling;
public class ChannelingProxy {
final private String host;
final private int port;
final private String userName;
final private String password;
public ChannelingProxy(String host, int port) {
this(host, port, null, null);
}
public ChannelingProxy(String host, int port, String userName, String password) {
this.host = host;
this.port = port;
this.userName = userName;
this.password = password;
}
public String getHost() {
return host;
}
public int getPort() {
return port;
}
public String getUserName() {
return userName;
}
public String getPassword() {
return password;
}
}