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

org.enodeframework.common.io.ReplySocketAddress Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
package org.enodeframework.common.io;

import java.io.Serializable;

public class ReplySocketAddress implements Serializable {

    private String host;

    private int port;

    public ReplySocketAddress() {

    }

    public ReplySocketAddress(String host, int port) {
        this.host = host;
        this.port = port;
    }

    public String getHost() {
        return host;
    }

    public void setHost(String host) {
        this.host = host;
    }

    public int getPort() {
        return port;
    }

    public void setPort(int port) {
        this.port = port;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy