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   * 
19   *         ExternalIdentifier is the mapping of the same named interface in ebRIM.
20   *         It extends RegistryObject.
21   *       
22   * 
23   * <p>Java class for ExternalIdentifierType complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType name="ExternalIdentifierType">
29   *   &lt;complexContent>
30   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}RegistryObjectType">
31   *       &lt;attribute name="registryObject" use="required" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}referenceURI" />
32   *       &lt;attribute name="identificationScheme" use="required" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}referenceURI" />
33   *       &lt;attribute name="value" use="required" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}LongName" />
34   *     &lt;/extension>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "ExternalIdentifierType")
43  public class ExternalIdentifierType
44      extends RegistryObjectType
45  {
46  
47      @XmlAttribute(required = true)
48      protected String registryObject;
49      @XmlAttribute(required = true)
50      protected String identificationScheme;
51      @XmlAttribute(required = true)
52      protected String value;
53  
54      /**
55       * Gets the value of the registryObject property.
56       * 
57       * @return
58       *     possible object is
59       *     {@link String }
60       *     
61       */
62      public String getRegistryObject() {
63          return registryObject;
64      }
65  
66      /**
67       * Sets the value of the registryObject property.
68       * 
69       * @param value
70       *     allowed object is
71       *     {@link String }
72       *     
73       */
74      public void setRegistryObject(String value) {
75          this.registryObject = value;
76      }
77  
78      /**
79       * Gets the value of the identificationScheme property.
80       * 
81       * @return
82       *     possible object is
83       *     {@link String }
84       *     
85       */
86      public String getIdentificationScheme() {
87          return identificationScheme;
88      }
89  
90      /**
91       * Sets the value of the identificationScheme property.
92       * 
93       * @param value
94       *     allowed object is
95       *     {@link String }
96       *     
97       */
98      public void setIdentificationScheme(String value) {
99          this.identificationScheme = value;
100     }
101 
102     /**
103      * Gets the value of the value property.
104      * 
105      * @return
106      *     possible object is
107      *     {@link String }
108      *     
109      */
110     public String getValue() {
111         return value;
112     }
113 
114     /**
115      * Sets the value of the value property.
116      * 
117      * @param value
118      *     allowed object is
119      *     {@link String }
120      *     
121      */
122     public void setValue(String value) {
123         this.value = value;
124     }
125 
126 }