asia.stampy.common.gateway.HostPort.java Source code

Java tutorial

Introduction

Here is the source code for asia.stampy.common.gateway.HostPort.java

Source

/*
 * Copyright (C) 2013 Burton Alexander
 * 
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License as published by the Free Software
 * Foundation; either version 2 of the License, or (at your option) any later
 * version.
 * 
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 * details.
 * 
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 51
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 * 
 */
package asia.stampy.common.gateway;

import java.io.Serializable;
import java.net.InetSocketAddress;

import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;

import asia.stampy.common.StampyLibrary;

/**
 * A HostPort is a simple bean encapsulating which host and port has made a
 * connection. Useful on the server side to keep track of who is connected,
 * where subscriptions go etc.
 */
@StampyLibrary(libraryName = "stampy-client-server")
public class HostPort implements Serializable {
    private static final long serialVersionUID = 7989783689512750362L;

    private final String host;
    private final int port;

    /**
     * Instantiates a new host port.
     * 
     * @param host
     *          the host
     * @param port
     *          the port
     */
    public HostPort(String host, int port) {
        this.host = host;
        this.port = port;
    }

    /**
     * Instantiates a new host port.
     * 
     * @param address
     *          the address
     */
    public HostPort(InetSocketAddress address) {
        this.host = address.getAddress().getHostAddress();
        this.port = address.getPort();
    }

    /**
     * Gets the host.
     * 
     * @return the host
     */
    public String getHost() {
        return host;
    }

    /**
     * Gets the port.
     * 
     * @return the port
     */
    public int getPort() {
        return port;
    }

    /*
     * (non-Javadoc)
     * 
     * @see java.lang.Object#equals(java.lang.Object)
     */
    @Override
    public boolean equals(Object o) {
        return EqualsBuilder.reflectionEquals(this, o);
    }

    /*
     * (non-Javadoc)
     * 
     * @see java.lang.Object#hashCode()
     */
    @Override
    public int hashCode() {
        return HashCodeBuilder.reflectionHashCode(this);
    }

    /*
     * (non-Javadoc)
     * 
     * @see java.lang.Object#toString()
     */
    @Override
    public String toString() {
        return getHost() + ":" + getPort();
    }

}