// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-793 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2009.07.03 at 05:59:50 PM CEST // package com.sun.jersey.json.impl.rim; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * Represents a telephone number in ebRIM. * * <p>Java class for TelephoneNumberType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TelephoneNumberType"> * <complexContent> * <extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ExtensibleObjectType"> * <attribute name="areaCode" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}String8" /> * <attribute name="countryCode" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}String8" /> * <attribute name="extension" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}String8" /> * <attribute name="number" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}String16" /> * <attribute name="type" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}objectReferenceType" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TelephoneNumberType") public class TelephoneNumberType extends ExtensibleObjectType { @XmlAttribute protected String areaCode; @XmlAttribute protected String countryCode; @XmlAttribute protected String extension; @XmlAttribute protected String number; @XmlAttribute protected String type; /** * Gets the value of the areaCode property. * * @return * possible object is * {@link String } * */ public String getAreaCode() { return areaCode; } /** * Sets the value of the areaCode property. * * @param value * allowed object is * {@link String } * */ public void setAreaCode(String value) { this.areaCode = value; } /** * Gets the value of the countryCode property. * * @return * possible object is * {@link String } * */ public String getCountryCode() { return countryCode; } /** * Sets the value of the countryCode property. * * @param value * allowed object is * {@link String } * */ public void setCountryCode(String value) { this.countryCode = value; } /** * Gets the value of the extension property. * * @return * possible object is * {@link String } * */ public String getExtension() { return extension; } /** * Sets the value of the extension property. * * @param value * allowed object is * {@link String } * */ public void setExtension(String value) { this.extension = value; } /** * Gets the value of the number property. * * @return * possible object is * {@link String } * */ public String getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link String } * */ public void setNumber(String value) { this.number = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }