package com.juick.xmpp.s2s; /** * * @author ugnich */ public class HostnamePort { public String hostname; public int port; public HostnamePort(String hostname, int port) { this.hostname = hostname; this.port = port; } }