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.lcm;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlElement;
14  import javax.xml.bind.annotation.XmlRootElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rim.RegistryObjectListType;
18  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rs.RegistryRequestType;
19  
20  
21  /**
22   * <p>Java class for anonymous complex type.
23   * 
24   * <p>The following schema fragment specifies the expected content contained within this class.
25   * 
26   * <pre>
27   * &lt;complexType>
28   *   &lt;complexContent>
29   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rs:3.0}RegistryRequestType">
30   *       &lt;sequence>
31   *         &lt;element ref="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}RegistryObjectList"/>
32   *       &lt;/sequence>
33   *     &lt;/extension>
34   *   &lt;/complexContent>
35   * &lt;/complexType>
36   * </pre>
37   * 
38   * 
39   */
40  @XmlAccessorType(XmlAccessType.FIELD)
41  @XmlType(name = "", propOrder = {
42      "registryObjectList"
43  })
44  @XmlRootElement(name = "SubmitObjectsRequest")
45  public class SubmitObjectsRequest
46      extends RegistryRequestType
47  {
48  
49      @XmlElement(name = "RegistryObjectList", namespace = "urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0", required = true)
50      protected RegistryObjectListType registryObjectList;
51  
52      /**
53       * Gets the value of the registryObjectList property.
54       * 
55       * @return
56       *     possible object is
57       *     {@link RegistryObjectListType }
58       *     
59       */
60      public RegistryObjectListType getRegistryObjectList() {
61          return registryObjectList;
62      }
63  
64      /**
65       * Sets the value of the registryObjectList property.
66       * 
67       * @param value
68       *     allowed object is
69       *     {@link RegistryObjectListType }
70       *     
71       */
72      public void setRegistryObjectList(RegistryObjectListType value) {
73          this.registryObjectList = value;
74      }
75  
76  }