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

gov.nasa.pds.harvest.cfg.IPAddress Maven / Gradle / Ivy

package gov.nasa.pds.harvest.cfg;

/**
 * RabbitMQ address. Host and port tuple.
 * @author karpenko
 */
public class IPAddress
{
    private String host;
    private int port;

    /**
     * Constructor
     * @param host a host, such as "localhost"
     * @param port a port, such as 5672
     */
    public IPAddress(String host, int port)
    {
        this.host = host;
        this.port = port;
    }
        
    public String getHost()
    {
        return host;
    }
    
    public int getPort()
    {
        return port;
    }
    
    @Override
    public String toString()
    {
        return host + ":" + port;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy