001    
002    package org.apache.camel.wsdl_first.types;
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="personId" type="{http://camel.apache.org/wsdl-first/types}MyStringType"/>
022     *         &lt;element name="ssn" type="{http://www.w3.org/2001/XMLSchema}string"/>
023     *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
024     *       &lt;/sequence>
025     *     &lt;/restriction>
026     *   &lt;/complexContent>
027     * &lt;/complexType>
028     * </pre>
029     * 
030     * 
031     */
032    @XmlAccessorType(XmlAccessType.FIELD)
033    @XmlType(name = "", propOrder = {
034        "personId",
035        "ssn",
036        "name"
037    })
038    @XmlRootElement(name = "GetPersonResponse")
039    public class GetPersonResponse {
040    
041        @XmlElement(required = true)
042        protected String personId;
043        @XmlElement(required = true)
044        protected String ssn;
045        @XmlElement(required = true)
046        protected String name;
047    
048        /**
049         * Gets the value of the personId property.
050         * 
051         * @return
052         *     possible object is
053         *     {@link String }
054         *     
055         */
056        public String getPersonId() {
057            return personId;
058        }
059    
060        /**
061         * Sets the value of the personId property.
062         * 
063         * @param value
064         *     allowed object is
065         *     {@link String }
066         *     
067         */
068        public void setPersonId(String value) {
069            this.personId = value;
070        }
071    
072        /**
073         * Gets the value of the ssn property.
074         * 
075         * @return
076         *     possible object is
077         *     {@link String }
078         *     
079         */
080        public String getSsn() {
081            return ssn;
082        }
083    
084        /**
085         * Sets the value of the ssn property.
086         * 
087         * @param value
088         *     allowed object is
089         *     {@link String }
090         *     
091         */
092        public void setSsn(String value) {
093            this.ssn = value;
094        }
095    
096        /**
097         * Gets the value of the name property.
098         * 
099         * @return
100         *     possible object is
101         *     {@link String }
102         *     
103         */
104        public String getName() {
105            return name;
106        }
107    
108        /**
109         * Sets the value of the name property.
110         * 
111         * @param value
112         *     allowed object is
113         *     {@link String }
114         *     
115         */
116        public void setName(String value) {
117            this.name = value;
118        }
119    
120    }