TcpConnectionConfiguration tcpConfiguration = TcpConnectionConfiguration.builder()
.port(5222)
.secure(false)
.build();
XmppSessionConfiguration configuration = XmppSessionConfiguration.builder()
.debugger(VisualDebugger.class)
.defaultResponseTimeout(5000)
.build();
XmppSession xmppSession = new XmppSession("localhost", configuration, tcpConfiguration);