Examples of RoutingTable


Examples of org.jivesoftware.openfire.RoutingTable

   *
   * @param jid
   * @return <tt>true</tt> if the JID is a component, <tt>false<.tt> if not.
   */
  private boolean isComponent(JID jid) {
    final RoutingTable routingTable = XMPPServer.getInstance().getRoutingTable();
    if (routingTable != null) {
      return routingTable.hasComponentRoute(jid);
    }
    return false;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.