blob: ce020f8d3f4c3df18016121acb6c154263fc7116 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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;
}
}
|