Handles XMPP URI Mappings
摘要:
/** * Handles XMPP URI Mappings. * * @param arguments the arguments passed into Spark. */ public void handleURIMapping(String arguments) { if(arguments == null){ return; } if (arguments.indexOf("xmpp") == -1) { return; } ... 阅读全文
posted @ 2013-05-24 18:09 CVT-wangxin 阅读(223) 评论(0) 推荐(0) 编辑