001: /**
002: * JOnAS: Java(TM) Open Application Server
003: * Copyright (C) 1999 Bull S.A.
004: * Contact: jonas-team@objectweb.org
005: *
006: * This library is free software; you can redistribute it and/or
007: *
008: * modify it under the terms of the GNU Lesser General Public
009: * License as published by the Free Software Foundation; either
010: * version 2.1 of the License, or 1any later version.
011: *
012: * This library is distributed in the hope that it will be useful,
013: * but WITHOUT ANY WARRANTY; without even the implied warranty of
014: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015: * Lesser General Public License for more details.
016: *
017: * You should have received a copy of the GNU Lesser General Public
018: * License along with this library; if not, write to the Free Software
019: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
020: * USA
021: *
022: * Initial developer: JOnAS team
023: * --------------------------------------------------------------------------
024: * $Id: MessageDrivenDestination.java 4716 2004-05-10 11:45:44Z sauthieg $
025: * --------------------------------------------------------------------------
026: */package org.objectweb.jonas_ejb.deployment.xml;
027:
028: import org.objectweb.jonas_lib.deployment.xml.AbsElement;
029:
030: /**
031: * This class defines the implementation of the element message-driven-destination
032: *
033: * @author JOnAS team
034: */
035:
036: public class MessageDrivenDestination extends AbsElement {
037:
038: /**
039: * destination-type
040: */
041: private String destinationType = null;
042:
043: /**
044: * subscription-durability
045: */
046: private String subscriptionDurability = null;
047:
048: /**
049: * Constructor
050: */
051: public MessageDrivenDestination() {
052: super ();
053: }
054:
055: /**
056: * Gets the destination-type
057: * @return the destination-type
058: */
059: public String getDestinationType() {
060: return destinationType;
061: }
062:
063: /**
064: * Set the destination-type
065: * @param destinationType destinationType
066: */
067: public void setDestinationType(String destinationType) {
068: this .destinationType = destinationType;
069: }
070:
071: /**
072: * Gets the subscription-durability
073: * @return the subscription-durability
074: */
075: public String getSubscriptionDurability() {
076: return subscriptionDurability;
077: }
078:
079: /**
080: * Set the subscription-durability
081: * @param subscriptionDurability subscriptionDurability
082: */
083: public void setSubscriptionDurability(String subscriptionDurability) {
084: this .subscriptionDurability = subscriptionDurability;
085: }
086:
087: /**
088: * Represents this element by it's XML description.
089: * @param indent use this indent for prexifing XML representation.
090: * @return the XML description of this object.
091: */
092: public String toXML(int indent) {
093: StringBuffer sb = new StringBuffer();
094: sb.append(indent(indent));
095: sb.append("<message-driven-destination>\n");
096:
097: indent += 2;
098:
099: // destination-type
100: sb.append(xmlElement(destinationType, "destination-type",
101: indent));
102: // subscription-durability
103: sb.append(xmlElement(subscriptionDurability,
104: "subscription-durability", indent));
105: indent -= 2;
106: sb.append(indent(indent));
107: sb.append("</message-driven-destination>\n");
108:
109: return sb.toString();
110: }
111: }
|