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   *         Use to reference an Object by its id.
20   *         Specifies the id attribute of the object as its id attribute.
21   *         id attribute in ObjectAttributes is exactly the same syntax and semantics as
22   *         id attribute in RegistryObject.
23   *       
24   * 
25   * <p>Java class for ObjectRefType complex type.
26   * 
27   * <p>The following schema fragment specifies the expected content contained within this class.
28   * 
29   * <pre>
30   * &lt;complexType name="ObjectRefType">
31   *   &lt;complexContent>
32   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}IdentifiableType">
33   *       &lt;attribute name="createReplica" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
34   *     &lt;/extension>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "ObjectRefType")
43  public class ObjectRefType
44      extends IdentifiableType
45  {
46  
47      @XmlAttribute
48      protected Boolean createReplica;
49  
50      /**
51       * Gets the value of the createReplica property.
52       * 
53       * @return
54       *     possible object is
55       *     {@link Boolean }
56       *     
57       */
58      public boolean isCreateReplica() {
59          if (createReplica == null) {
60              return false;
61          } else {
62              return createReplica;
63          }
64      }
65  
66      /**
67       * Sets the value of the createReplica property.
68       * 
69       * @param value
70       *     allowed object is
71       *     {@link Boolean }
72       *     
73       */
74      public void setCreateReplica(Boolean value) {
75          this.createReplica = value;
76      }
77  
78  }