Package org.cipango.sipapp.rules

Examples of org.cipango.sipapp.rules.SubdomainRule


    }
    else if ("subdomain-of".equals(name))
    {
      String var = node.getString("var", false, true);
      String value = node.getString("value", false, true);
      return new SubdomainRule(var, value);
    }
    else if ("or".equals(name))
    {
      OrRule or = new OrRule();
      Iterator it = node.iterator();
View Full Code Here

TOP

Related Classes of org.cipango.sipapp.rules.SubdomainRule

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.