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