001: //
002: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-422
003: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
004: // Any modifications to this file will be lost upon recompilation of the source schema.
005: // Generated on: 2007.07.10 at 02:10:42 PM PDT
006: //
007:
008: package com.sun.xml.ws.rm.v200702;
009:
010: import org.w3c.dom.Element;
011:
012: import javax.xml.bind.annotation.*;
013: import javax.xml.namespace.QName;
014: import java.util.ArrayList;
015: import java.util.HashMap;
016: import java.util.List;
017: import java.util.Map;
018:
019: /**
020: * <p>Java class for TerminateSequenceResponseType complex type.
021: *
022: * <p>The following schema fragment specifies the expected content contained within this class.
023: *
024: * <pre>
025: * <complexType name="TerminateSequenceResponseType">
026: * <complexContent>
027: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
028: * <sequence>
029: * <element ref="{http://docs.oasis-open.org/ws-rx/wsrm/200702}Identifier"/>
030: * <any/>
031: * </sequence>
032: * </restriction>
033: * </complexContent>
034: * </complexType>
035: * </pre>
036: *
037: *
038: */
039: @XmlAccessorType(XmlAccessType.FIELD)
040: @XmlType(name="TerminateSequenceResponseType",propOrder={"identifier","any"})
041: @XmlRootElement(name="TerminateSequenceResponseElement",namespace="http://docs.oasis-open.org/ws-rx/wsrm/200702")
042: public class TerminateSequenceResponseElement {
043:
044: @XmlElement(name="Identifier",required=true,namespace="http://docs.oasis-open.org/ws-rx/wsrm/200702")
045: protected Identifier identifier;
046: @XmlAnyElement(lax=true)
047: protected List<Object> any;
048: @XmlAnyAttribute
049: private Map<QName, String> otherAttributes = new HashMap<QName, String>();
050:
051: /**
052: * Gets the value of the identifier property.
053: *
054: * @return
055: * possible object is
056: * {@link Identifier }
057: *
058: */
059: public Identifier getIdentifier() {
060: return identifier;
061: }
062:
063: /**
064: * Sets the value of the identifier property.
065: *
066: * @param value
067: * allowed object is
068: * {@link Identifier }
069: *
070: */
071: public void setIdentifier(Identifier value) {
072: this .identifier = value;
073: }
074:
075: /**
076: * Gets the value of the any property.
077: *
078: * <p>
079: * This accessor method returns a reference to the live list,
080: * not a snapshot. Therefore any modification you make to the
081: * returned list will be present inside the JAXB object.
082: * This is why there is not a <CODE>set</CODE> method for the any property.
083: *
084: * <p>
085: * For example, to add a new item, do as follows:
086: * <pre>
087: * getAny().add(newItem);
088: * </pre>
089: *
090: *
091: * <p>
092: * Objects of the following type(s) are allowed in the list
093: * {@link Object }
094: * {@link Element }
095: *
096: *
097: */
098: public List<Object> getAny() {
099: if (any == null) {
100: any = new ArrayList<Object>();
101: }
102: return this .any;
103: }
104:
105: /**
106: * Gets a map that contains attributes that aren't bound to any typed property on this class.
107: *
108: * <p>
109: * the map is keyed by the name of the attribute and
110: * the value is the string value of the attribute.
111: *
112: * the map returned by this method is live, and you can add new attribute
113: * by updating the map directly. Because of this design, there's no setter.
114: *
115: *
116: * @return
117: * always non-null
118: */
119: public Map<QName, String> getOtherAttributes() {
120: return otherAttributes;
121: }
122:
123: }
|