Examples of SetAllPropertiesRule


Examples of org.apache.catalina.startup.SetAllPropertiesRule

    digester.addObjectCreate("Context/Environment", ContextEnvironment.class);
    digester.addSetProperties("Context/Environment");
    digester.addSetNext("Context/Environment", "addEnvironment");

    digester.addObjectCreate("Context/Resource", ContextResource.class);
    digester.addRule("Context/Resource", new SetAllPropertiesRule());
    digester.addSetNext("Context/Resource", "addResource");

    return digester;
  }
View Full Code Here

Examples of org.apache.catalina.startup.SetAllPropertiesRule

        digester.addSetProperties("Context/Manager/Store");
        digester.addSetNext("Context/Manager/Store", "setStore", "org.apache.catalina.Store");
        digester.addRuleSet(new RealmRuleSet("Context/"));
        digester.addCallMethod("Context/WatchedResource", "addWatchedResource", 0);
        digester.addObjectCreate("Context/Resource", "org.apache.catalina.deploy.ContextResource");
        digester.addRule("Context/Resource", new SetAllPropertiesRule());
        digester.addRule("Context/Resource", new SetNextNamingRule("addResource", "org.apache.catalina.deploy.ContextResource"));

        return digester;
    }
View Full Code Here

Examples of org.apache.catalina.startup.SetAllPropertiesRule

        digester.addSetProperties("Context/Manager/Store");
        digester.addSetNext("Context/Manager/Store", "setStore", "org.apache.catalina.Store");
        digester.addRuleSet(new RealmRuleSet("Context/"));
        digester.addCallMethod("Context/WatchedResource", "addWatchedResource", 0);
        digester.addObjectCreate("Context/Resource", "org.apache.catalina.deploy.ContextResource");
        digester.addRule("Context/Resource", new SetAllPropertiesRule());
        digester.addRule("Context/Resource", new SetNextNamingRule("addResource", "org.apache.catalina.deploy.ContextResource"));

        return digester;
    }
View Full Code Here

Examples of org.huihoo.workflow.impl.xpdl.parser.xmlrules.SetAllPropertiesRule

   
    digester.addObjectCreate(
      "Server/Service/NamingServer",
      "org.huihoo.willow.core.StandardNamingServer",
      "className");
    digester.addRule("Server/Service/NamingServer", new SetAllPropertiesRule());
    digester.addSetNext(
      "Server/Service/NamingServer",
      "setNamingServer",
      "org.huihoo.willow.NamingServer");
           
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.