001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common Development
008: * and Distribution License("CDDL") (collectively, the "License"). You
009: * may not use this file except in compliance with the License. You can obtain
010: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
011: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
012: * language governing permissions and limitations under the License.
013: *
014: * When distributing the software, include this License Header Notice in each
015: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
016: * Sun designates this particular file as subject to the "Classpath" exception
017: * as provided by Sun in the GPL Version 2 section of the License file that
018: * accompanied this code. If applicable, add the following below the License
019: * Header, with the fields enclosed by brackets [] replaced by your own
020: * identifying information: "Portions Copyrighted [year]
021: * [name of copyright owner]"
022: *
023: * Contributor(s):
024: *
025: * If you wish your version of this file to be governed by only the CDDL or
026: * only the GPL Version 2, indicate your decision by adding "[Contributor]
027: * elects to include this software in this distribution under the [CDDL or GPL
028: * Version 2] license." If you don't indicate a single choice of license, a
029: * recipient has the option to distribute your version of this file under
030: * either the CDDL, the GPL Version 2 or to extend the choice of license to
031: * its licensees as provided above. However, if you add GPL Version 2 code
032: * and therefore, elected the GPL Version 2 license, then the option applies
033: * only if the new code is made subject to such option by the copyright
034: * holder.
035: */
036:
037: package com.sun.xml.ws.rm.v200502;
038:
039: import org.w3c.dom.Element;
040:
041: import javax.xml.bind.annotation.*;
042: import javax.xml.namespace.QName;
043: import java.util.ArrayList;
044: import java.util.HashMap;
045: import java.util.List;
046: import java.util.Map;
047:
048: /**
049: * <p>Java class to handle SequenceFaults </p>
050: *
051: * @author Bhakti Mehta
052: *
053: */
054: @XmlAccessorType(XmlAccessType.FIELD)
055: @XmlType(name="SequenceFaultType",propOrder={"faultCode","any"})
056: @XmlRootElement(name="SequenceFault",namespace="http://schemas.xmlsoap.org/ws/2005/02/rm")
057: public class SequenceFaultElement {
058:
059: @XmlElement(name="FaultCode",namespace="http://schemas.xmlsoap.org/ws/2005/02/rm",required=true)
060: protected QName faultCode;
061: @XmlAnyElement(lax=true)
062: protected List<Object> any;
063: @XmlAnyAttribute
064: private Map<QName, String> otherAttributes = new HashMap<QName, String>();
065:
066: /**
067: * Gets the value of the faultCode property.
068: *
069: * @return
070: * possible object is
071: * {@link QName }
072: *
073: */
074: public QName getFaultCode() {
075: return faultCode;
076: }
077:
078: /**
079: * Sets the value of the faultCode property.
080: *
081: * @param value
082: * allowed object is
083: * {@link QName }
084: *
085: */
086: public void setFaultCode(QName value) {
087: this .faultCode = value;
088: }
089:
090: /**
091: * Gets the value of the any property.
092: *
093: * <p>
094: * This accessor method returns a reference to the live list,
095: * not a snapshot. Therefore any modification you make to the
096: * returned list will be present inside the JAXB object.
097: * This is why there is not a <CODE>set</CODE> method for the any property.
098: *
099: * <p>
100: * For example, to add a new item, do as follows:
101: * <pre>
102: * getAny().add(newItem);
103: * </pre>
104: *
105: *
106: * <p>
107: * Objects of the following type(s) are allowed in the list
108: * {@link Element }
109: * {@link Object }
110: *
111: *
112: */
113: public List<Object> getAny() {
114: if (any == null) {
115: any = new ArrayList<Object>();
116: }
117: return this .any;
118: }
119:
120: /**
121: * Gets a map that contains attributes that aren't bound to any typed property on this class.
122: *
123: * <p>
124: * the map is keyed by the name of the attribute and
125: * the value is the string value of the attribute.
126: *
127: * the map returned by this method is live, and you can add new attribute
128: * by updating the map directly. Because of this design, there's no setter.
129: *
130: *
131: * @return
132: * always non-null
133: */
134: public Map<QName, String> getOtherAttributes() {
135: return otherAttributes;
136: }
137:
138: }
|