1 27 package org.objectweb.jonas_ejb.deployment.xml; 28 29 import org.objectweb.jonas_lib.deployment.xml.AbsElement; 30 35 36 public class MessageDrivenDestination extends AbsElement { 37 38 41 private String destinationType = null; 42 43 46 private String subscriptionDurability = null; 47 48 49 52 public MessageDrivenDestination() { 53 super(); 54 } 55 56 60 public String getDestinationType() { 61 return destinationType; 62 } 63 64 68 public void setDestinationType(String destinationType) { 69 this.destinationType = destinationType; 70 } 71 72 76 public String getSubscriptionDurability() { 77 return subscriptionDurability; 78 } 79 80 84 public void setSubscriptionDurability(String subscriptionDurability) { 85 this.subscriptionDurability = subscriptionDurability; 86 } 87 88 93 public String toXML(int indent) { 94 StringBuffer sb = new StringBuffer (); 95 sb.append(indent(indent)); 96 sb.append("<message-driven-destination>\n"); 97 98 indent += 2; 99 100 sb.append(xmlElement(destinationType, "destination-type", indent)); 102 sb.append(xmlElement(subscriptionDurability, "subscription-durability", indent)); 104 indent -= 2; 105 sb.append(indent(indent)); 106 sb.append("</message-driven-destination>\n"); 107 108 return sb.toString(); 109 } 110 } 111 | Popular Tags |