001    
002    package org.oasis_open.docs.wsn.b_2;
003    
004    import java.util.ArrayList;
005    import java.util.List;
006    import javax.xml.bind.annotation.XmlAccessType;
007    import javax.xml.bind.annotation.XmlAccessorType;
008    import javax.xml.bind.annotation.XmlElement;
009    import javax.xml.bind.annotation.XmlType;
010    import javax.xml.namespace.QName;
011    import org.oasis_open.docs.wsrf.bf_2.BaseFaultType;
012    
013    
014    /**
015     * <p>Java class for UnsupportedPolicyRequestFaultType complex type.
016     * 
017     * <p>The following schema fragment specifies the expected content contained within this class.
018     * 
019     * <pre>
020     * &lt;complexType name="UnsupportedPolicyRequestFaultType">
021     *   &lt;complexContent>
022     *     &lt;extension base="{http://docs.oasis-open.org/wsrf/bf-2}BaseFaultType">
023     *       &lt;sequence>
024     *         &lt;element name="UnsupportedPolicy" type="{http://www.w3.org/2001/XMLSchema}QName" maxOccurs="unbounded" minOccurs="0"/>
025     *       &lt;/sequence>
026     *     &lt;/extension>
027     *   &lt;/complexContent>
028     * &lt;/complexType>
029     * </pre>
030     * 
031     * 
032     */
033    @XmlAccessorType(XmlAccessType.FIELD)
034    @XmlType(name = "UnsupportedPolicyRequestFaultType", propOrder = {
035        "unsupportedPolicy"
036    })
037    public class UnsupportedPolicyRequestFaultType
038        extends BaseFaultType
039    {
040    
041        @XmlElement(name = "UnsupportedPolicy")
042        protected List<QName> unsupportedPolicy;
043    
044        /**
045         * Gets the value of the unsupportedPolicy property.
046         * 
047         * <p>
048         * This accessor method returns a reference to the live list,
049         * not a snapshot. Therefore any modification you make to the
050         * returned list will be present inside the JAXB object.
051         * This is why there is not a <CODE>set</CODE> method for the unsupportedPolicy property.
052         * 
053         * <p>
054         * For example, to add a new item, do as follows:
055         * <pre>
056         *    getUnsupportedPolicy().add(newItem);
057         * </pre>
058         * 
059         * 
060         * <p>
061         * Objects of the following type(s) are allowed in the list
062         * {@link QName }
063         * 
064         * 
065         */
066        public List<QName> getUnsupportedPolicy() {
067            if (unsupportedPolicy == null) {
068                unsupportedPolicy = new ArrayList<QName>();
069            }
070            return this.unsupportedPolicy;
071        }
072    
073    }