ActivationConfigPropertyRuleSet.java

00001 
00027 package org.objectweb.jonas_ejb.deployment.rules;
00028 
00029 import org.apache.commons.digester.Digester;
00030 import org.objectweb.jonas_lib.deployment.rules.JRuleSetBase;
00031 
00032 
00033 
00040 public class ActivationConfigPropertyRuleSet extends JRuleSetBase {
00041 
00046     public ActivationConfigPropertyRuleSet(String prefix) {
00047         super(prefix);
00048    }
00054     public void addRuleInstances(Digester digester) {
00055         digester.addObjectCreate(prefix + "activation-config-property",
00056                                  "org.objectweb.jonas_ejb.deployment.xml.ActivationConfigProperty");
00057         digester.addSetNext(prefix + "activation-config-property",
00058                             "addActivationConfigProperty",
00059                             "org.objectweb.jonas_ejb.deployment.xml.ActivationConfigProperty");
00060         digester.addCallMethod(prefix + "activation-config-property/activation-config-property-name",
00061                                "setActivationConfigPropertyName", 0);
00062         digester.addCallMethod(prefix + "activation-config-property/activation-config-property-value",
00063                                "setActivationConfigPropertyValue", 0);
00064     }
00065 }

Generated on Tue Feb 15 15:05:47 2005 for JOnAS by  doxygen 1.3.9.1