package com.kurento.kmf.common; public class Address { private String host; private int port; public Address(String host, int port) { super(); 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; } @Override public String toString() { return host + ":" + port; } }