1 27 package org.objectweb.jonas_ejb.deployment.rules; 28 29 import org.apache.commons.digester.Digester; 30 import org.objectweb.jonas_lib.deployment.rules.JRuleSetBase; 31 32 37 38 public class MessageDrivenDestinationRuleSet extends JRuleSetBase { 39 40 44 public MessageDrivenDestinationRuleSet(String prefix) { 45 super(prefix); 46 } 47 51 52 public void addRuleInstances(Digester digester) { 53 digester.addObjectCreate(prefix + "message-driven-destination", 54 "org.objectweb.jonas_ejb.deployment.xml.MessageDrivenDestination"); 55 digester.addSetNext(prefix + "message-driven-destination", 56 "setMessageDrivenDestination", 57 "org.objectweb.jonas_ejb.deployment.xml.MessageDrivenDestination"); 58 digester.addCallMethod(prefix + "message-driven-destination/destination-type", 59 "setDestinationType", 0); 60 digester.addCallMethod(prefix + "message-driven-destination/subscription-durability", 61 "setSubscriptionDurability", 0); 62 } 63 } 64 | Popular Tags |