
com.tinkerpop.rexster.server.metrics.HostPort Maven / Gradle / Ivy
The newest version!
package com.tinkerpop.rexster.server.metrics;
/**
* Represents a host and port combination.
*
* @author Stephen Mallette (http://stephen.genoprime.com)
*/
class HostPort {
private final String host;
private final int port;
public HostPort(final String host, final int port)
{
this.host = host;
this.port = port;
}
public String getHost()
{
return host;
}
public int getPort()
{
return port;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy