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.rs;
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.XmlElement;
15  import javax.xml.bind.annotation.XmlSchemaType;
16  import javax.xml.bind.annotation.XmlSeeAlso;
17  import javax.xml.bind.annotation.XmlType;
18  
19  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.lcm.AcceptObjectsRequest;
20  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.lcm.ApproveObjectsRequest;
21  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.lcm.DeprecateObjectsRequest;
22  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.lcm.RelocateObjectsRequest;
23  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.lcm.RemoveObjectsRequest;
24  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.lcm.SubmitObjectsRequest;
25  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.lcm.UndeprecateObjectsRequest;
26  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.lcm.UpdateObjectsRequest;
27  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.query.AdhocQueryRequest;
28  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rim.SlotListType;
29  
30  
31  /**
32   * Base type for all ebXML Registry requests
33   * 
34   * <p>Java class for RegistryRequestType complex type.
35   * 
36   * <p>The following schema fragment specifies the expected content contained within this class.
37   * 
38   * <pre>
39   * &lt;complexType name="RegistryRequestType">
40   *   &lt;complexContent>
41   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
42   *       &lt;sequence>
43   *         &lt;element name="RequestSlotList" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}SlotListType" minOccurs="0"/>
44   *       &lt;/sequence>
45   *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
46   *       &lt;attribute name="comment" type="{http://www.w3.org/2001/XMLSchema}string" />
47   *     &lt;/restriction>
48   *   &lt;/complexContent>
49   * &lt;/complexType>
50   * </pre>
51   * 
52   * 
53   */
54  @XmlAccessorType(XmlAccessType.FIELD)
55  @XmlType(name = "RegistryRequestType", propOrder = {
56      "requestSlotList"
57  })
58  @XmlSeeAlso({
59      AdhocQueryRequest.class,
60      ApproveObjectsRequest.class,
61      UpdateObjectsRequest.class,
62      RelocateObjectsRequest.class,
63      DeprecateObjectsRequest.class,
64      SubmitObjectsRequest.class,
65      RemoveObjectsRequest.class,
66      AcceptObjectsRequest.class,
67      UndeprecateObjectsRequest.class
68  })
69  public class RegistryRequestType {
70  
71      @XmlElement(name = "RequestSlotList")
72      protected SlotListType requestSlotList;
73      @XmlAttribute
74      @XmlSchemaType(name = "anyURI")
75      protected String id;
76      @XmlAttribute
77      protected String comment;
78  
79      /**
80       * Gets the value of the requestSlotList property.
81       * 
82       * @return
83       *     possible object is
84       *     {@link SlotListType }
85       *     
86       */
87      public SlotListType getRequestSlotList() {
88          return requestSlotList;
89      }
90  
91      /**
92       * Sets the value of the requestSlotList property.
93       * 
94       * @param value
95       *     allowed object is
96       *     {@link SlotListType }
97       *     
98       */
99      public void setRequestSlotList(SlotListType value) {
100         this.requestSlotList = value;
101     }
102 
103     /**
104      * Gets the value of the id property.
105      * 
106      * @return
107      *     possible object is
108      *     {@link String }
109      *     
110      */
111     public String getId() {
112         return id;
113     }
114 
115     /**
116      * Sets the value of the id property.
117      * 
118      * @param value
119      *     allowed object is
120      *     {@link String }
121      *     
122      */
123     public void setId(String value) {
124         this.id = value;
125     }
126 
127     /**
128      * Gets the value of the comment property.
129      * 
130      * @return
131      *     possible object is
132      *     {@link String }
133      *     
134      */
135     public String getComment() {
136         return comment;
137     }
138 
139     /**
140      * Sets the value of the comment property.
141      * 
142      * @param value
143      *     allowed object is
144      *     {@link String }
145      *     
146      */
147     public void setComment(String value) {
148         this.comment = value;
149     }
150 
151 }