com.bytezone.dm3270.utilities.Site Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dm3270-lib Show documentation
Show all versions of dm3270-lib Show documentation
This is a trimmed down version of https://github.com/dmolony/dm3270 to be used as
TN3270 client library
package com.bytezone.dm3270.utilities;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Site {
private static final Logger LOG = LoggerFactory.getLogger(Site.class);
public final boolean extended;
private final String url;
private int port;
public Site(String url, int port, boolean extended) {
this.url = url;
this.port = port;
this.extended = extended;
}
public String getURL() {
return url;
}
public int getPort() {
if (port <= 0) {
LOG.warn("Invalid port value: {}. Fallback to default value {}", port, 23);
port = 23;
}
return port;
}
public boolean getExtended() {
return extended;
}
@Override
public String toString() {
return String.format("Site [url=%s, port=%d]", getURL(), getPort());
}
}