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.XmlType;
008    
009    
010    /**
011     * <p>Java class for SOAPHeaderData complex type.
012     * 
013     * <p>The following schema fragment specifies the expected content contained within this class.
014     * 
015     * <pre>
016     * &lt;complexType name="SOAPHeaderData">
017     *   &lt;complexContent>
018     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
019     *       &lt;sequence>
020     *         &lt;element name="originator" type="{http://www.w3.org/2001/XMLSchema}string"/>
021     *         &lt;element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
022     *       &lt;/sequence>
023     *     &lt;/restriction>
024     *   &lt;/complexContent>
025     * &lt;/complexType>
026     * </pre>
027     * 
028     * 
029     */
030    @XmlAccessorType(XmlAccessType.FIELD)
031    @XmlType(name = "SOAPHeaderData", propOrder = {
032        "originator",
033        "message"
034    })
035    public class SOAPHeaderData {
036    
037        @XmlElement(required = true)
038        protected String originator;
039        @XmlElement(required = true)
040        protected String message;
041    
042        /**
043         * Gets the value of the originator property.
044         * 
045         * @return
046         *     possible object is
047         *     {@link String }
048         *     
049         */
050        public String getOriginator() {
051            return originator;
052        }
053    
054        /**
055         * Sets the value of the originator property.
056         * 
057         * @param value
058         *     allowed object is
059         *     {@link String }
060         *     
061         */
062        public void setOriginator(String value) {
063            this.originator = value;
064        }
065    
066        /**
067         * Gets the value of the message property.
068         * 
069         * @return
070         *     possible object is
071         *     {@link String }
072         *     
073         */
074        public String getMessage() {
075            return message;
076        }
077    
078        /**
079         * Sets the value of the message property.
080         * 
081         * @param value
082         *     allowed object is
083         *     {@link String }
084         *     
085         */
086        public void setMessage(String value) {
087            this.message = value;
088        }
089    
090    }