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.XmlSchemaType;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * 
20   *         ExternalLink is the mapping of the same named interface in ebRIM.
21   *         It extends RegistryObject.
22   *       
23   * 
24   * <p>Java class for ExternalLinkType complex type.
25   * 
26   * <p>The following schema fragment specifies the expected content contained within this class.
27   * 
28   * <pre>
29   * &lt;complexType name="ExternalLinkType">
30   *   &lt;complexContent>
31   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}RegistryObjectType">
32   *       &lt;attribute name="externalURI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
33   *     &lt;/extension>
34   *   &lt;/complexContent>
35   * &lt;/complexType>
36   * </pre>
37   * 
38   * 
39   */
40  @XmlAccessorType(XmlAccessType.FIELD)
41  @XmlType(name = "ExternalLinkType")
42  public class ExternalLinkType
43      extends RegistryObjectType
44  {
45  
46      @XmlAttribute(required = true)
47      @XmlSchemaType(name = "anyURI")
48      protected String externalURI;
49  
50      /**
51       * Gets the value of the externalURI property.
52       * 
53       * @return
54       *     possible object is
55       *     {@link String }
56       *     
57       */
58      public String getExternalURI() {
59          return externalURI;
60      }
61  
62      /**
63       * Sets the value of the externalURI property.
64       * 
65       * @param value
66       *     allowed object is
67       *     {@link String }
68       *     
69       */
70      public void setExternalURI(String value) {
71          this.externalURI = value;
72      }
73  
74  }