001    
002    package org.apache.camel.component.cxf.soap.headers;
003    
004    import javax.xml.bind.annotation.XmlAccessType;
005    import javax.xml.bind.annotation.XmlAccessorType;
006    import javax.xml.bind.annotation.XmlElement;
007    import javax.xml.bind.annotation.XmlRootElement;
008    import javax.xml.bind.annotation.XmlType;
009    
010    
011    /**
012     * <p>Java class for anonymous complex type.
013     * 
014     * <p>The following schema fragment specifies the expected content contained within this class.
015     * 
016     * <pre>
017     * &lt;complexType>
018     *   &lt;complexContent>
019     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
020     *       &lt;sequence>
021     *         &lt;element name="requestType" type="{http://apache.org/camel/component/cxf/soap/headers}me"/>
022     *       &lt;/sequence>
023     *     &lt;/restriction>
024     *   &lt;/complexContent>
025     * &lt;/complexType>
026     * </pre>
027     * 
028     * 
029     */
030    @XmlAccessorType(XmlAccessType.FIELD)
031    @XmlType(name = "", propOrder = {
032        "requestType"
033    })
034    @XmlRootElement(name = "inOutOfBandHeader")
035    public class InOutOfBandHeader {
036    
037        @XmlElement(required = true)
038        protected Me requestType;
039    
040        /**
041         * Gets the value of the requestType property.
042         * 
043         * @return
044         *     possible object is
045         *     {@link Me }
046         *     
047         */
048        public Me getRequestType() {
049            return requestType;
050        }
051    
052        /**
053         * Sets the value of the requestType property.
054         * 
055         * @param value
056         *     allowed object is
057         *     {@link Me }
058         *     
059         */
060        public void setRequestType(Me value) {
061            this.requestType = value;
062        }
063    
064    }