blob: 50d744024c431fd6173bde39e6528d9097ab2f29 [file] [log] [blame]
package geode.kafka;
public class LocatorHostPort {
private String hostName;
private int port;
public LocatorHostPort(String hostName, int port) {
this.hostName = hostName;
this.port = port;
}
public String getHostName() {
return hostName;
}
public int getPort() {
return port;
}
public String toString() {
return hostName + "[" + port + "]";
}
}