View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.9-03/31/2009 04:14 PM(snajper)-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2009.04.30 at 06:20:20 PM CEST 
6   //
7   
8   
9   package org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rim;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlType;
15  
16  
17  /**
18   * Mapping of the same named interface in ebRIM.
19   * 
20   * <p>Java class for EmailAddressType complex type.
21   * 
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   * 
24   * <pre>
25   * &lt;complexType name="EmailAddressType">
26   *   &lt;complexContent>
27   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28   *       &lt;attribute name="address" use="required" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}ShortName" />
29   *       &lt;attribute name="type" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}String32" />
30   *     &lt;/restriction>
31   *   &lt;/complexContent>
32   * &lt;/complexType>
33   * </pre>
34   * 
35   * 
36   */
37  @XmlAccessorType(XmlAccessType.FIELD)
38  @XmlType(name = "EmailAddressType")
39  public class EmailAddressType {
40  
41      @XmlAttribute(required = true)
42      protected String address;
43      @XmlAttribute
44      protected String type;
45  
46      /**
47       * Gets the value of the address property.
48       * 
49       * @return
50       *     possible object is
51       *     {@link String }
52       *     
53       */
54      public String getAddress() {
55          return address;
56      }
57  
58      /**
59       * Sets the value of the address property.
60       * 
61       * @param value
62       *     allowed object is
63       *     {@link String }
64       *     
65       */
66      public void setAddress(String value) {
67          this.address = value;
68      }
69  
70      /**
71       * Gets the value of the type property.
72       * 
73       * @return
74       *     possible object is
75       *     {@link String }
76       *     
77       */
78      public String getType() {
79          return type;
80      }
81  
82      /**
83       * Sets the value of the type property.
84       * 
85       * @param value
86       *     allowed object is
87       *     {@link String }
88       *     
89       */
90      public void setType(String value) {
91          this.type = value;
92      }
93  
94  }