コード例 #1
0
ファイル: XMPPModule.java プロジェクト: henman95/Sol
 public void debug(Session session, int level, String text) {
   send(session.getProperty("xmppDebugDestination"), "Debug(" + level + "):" + text);
 }
コード例 #2
0
ファイル: XMPPModule.java プロジェクト: henman95/Sol
 public void send(Session session, String text) {
   send(session.getProperty("xmppDestination"), text);
 }