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