Package tigase.util

Examples of tigase.util.RoutingsContainer$MultiMode


  public void setProperties(Map<String, Object> props) {
    super.setProperties(props);
    boolean routing_mode =
      (Boolean)props.get(ROUTINGS_PROP_KEY + "/" + ROUTING_MODE_PROP_KEY);
    routings = new RoutingsContainer(routing_mode);
    int idx = (ROUTINGS_PROP_KEY + "/").length();
    for (Map.Entry<String, Object> entry: props.entrySet()) {
      if (entry.getKey().startsWith(ROUTINGS_PROP_KEY + "/")
        && !entry.getKey().equals(ROUTINGS_PROP_KEY + "/" +
          ROUTING_MODE_PROP_KEY)) {
View Full Code Here

TOP

Related Classes of tigase.util.RoutingsContainer$MultiMode

Copyright © 2018 www.massapicom. 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.