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