View Javadoc
1   
2   package org.miloss.fgsms.services.interfaces.dataaccessservice;
3   
4   import java.io.Serializable;
5   import javax.xml.bind.annotation.XmlAccessType;
6   import javax.xml.bind.annotation.XmlAccessorType;
7   import javax.xml.bind.annotation.XmlElement;
8   import javax.xml.bind.annotation.XmlType;
9   import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
10  import org.miloss.fgsms.services.interfaces.common.TimeRange;
11  
12  
13  /**
14   * Must input either (URI AND topic/queue name) OR (URI AND cannoicalname)
15   * 
16   * <p>Java class for GetHistoricalTopicQueueDetailsRequestMsg complex type.
17   * 
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   * 
20   * <pre>
21   * &lt;complexType name="GetHistoricalTopicQueueDetailsRequestMsg">
22   *   &lt;complexContent>
23   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24   *       &lt;sequence>
25   *         &lt;element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
26   *         &lt;element name="range" type="{urn:org:miloss:fgsms:services:interfaces:common}TimeRange"/>
27   *         &lt;element name="uri" type="{http://www.w3.org/2001/XMLSchema}string"/>
28   *         &lt;element name="queuetopicname" type="{http://www.w3.org/2001/XMLSchema}string"/>
29   *         &lt;element name="queuetopiccanonicalname" type="{http://www.w3.org/2001/XMLSchema}string"/>
30   *       &lt;/sequence>
31   *     &lt;/restriction>
32   *   &lt;/complexContent>
33   * &lt;/complexType>
34   * </pre>
35   * 
36   * 
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "GetHistoricalTopicQueueDetailsRequestMsg", propOrder = {
40      "classification",
41      "range",
42      "uri",
43      "queuetopicname",
44      "queuetopiccanonicalname"
45  })
46  public class GetHistoricalTopicQueueDetailsRequestMsg
47      implements Serializable
48  {
49  
50      private final static long serialVersionUID = 1L;
51      @XmlElement(required = true, nillable = true)
52      protected SecurityWrapper classification;
53      @XmlElement(required = true)
54      protected TimeRange range;
55      @XmlElement(required = true)
56      protected String uri;
57      @XmlElement(required = true)
58      protected String queuetopicname;
59      @XmlElement(required = true)
60      protected String queuetopiccanonicalname;
61  
62      /**
63       * Gets the value of the classification property.
64       * 
65       * @return
66       *     possible object is
67       *     {@link SecurityWrapper }
68       *     
69       */
70      public SecurityWrapper getClassification() {
71          return classification;
72      }
73  
74      /**
75       * Sets the value of the classification property.
76       * 
77       * @param value
78       *     allowed object is
79       *     {@link SecurityWrapper }
80       *     
81       */
82      public void setClassification(SecurityWrapper value) {
83          this.classification = value;
84      }
85  
86      public boolean isSetClassification() {
87          return (this.classification!= null);
88      }
89  
90      /**
91       * Gets the value of the range property.
92       * 
93       * @return
94       *     possible object is
95       *     {@link TimeRange }
96       *     
97       */
98      public TimeRange getRange() {
99          return range;
100     }
101 
102     /**
103      * Sets the value of the range property.
104      * 
105      * @param value
106      *     allowed object is
107      *     {@link TimeRange }
108      *     
109      */
110     public void setRange(TimeRange value) {
111         this.range = value;
112     }
113 
114     public boolean isSetRange() {
115         return (this.range!= null);
116     }
117 
118     /**
119      * Gets the value of the uri property.
120      * 
121      * @return
122      *     possible object is
123      *     {@link String }
124      *     
125      */
126     public String getUri() {
127         return uri;
128     }
129 
130     /**
131      * Sets the value of the uri property.
132      * 
133      * @param value
134      *     allowed object is
135      *     {@link String }
136      *     
137      */
138     public void setUri(String value) {
139         this.uri = value;
140     }
141 
142     public boolean isSetUri() {
143         return (this.uri!= null);
144     }
145 
146     /**
147      * Gets the value of the queuetopicname property.
148      * 
149      * @return
150      *     possible object is
151      *     {@link String }
152      *     
153      */
154     public String getQueuetopicname() {
155         return queuetopicname;
156     }
157 
158     /**
159      * Sets the value of the queuetopicname property.
160      * 
161      * @param value
162      *     allowed object is
163      *     {@link String }
164      *     
165      */
166     public void setQueuetopicname(String value) {
167         this.queuetopicname = value;
168     }
169 
170     public boolean isSetQueuetopicname() {
171         return (this.queuetopicname!= null);
172     }
173 
174     /**
175      * Gets the value of the queuetopiccanonicalname property.
176      * 
177      * @return
178      *     possible object is
179      *     {@link String }
180      *     
181      */
182     public String getQueuetopiccanonicalname() {
183         return queuetopiccanonicalname;
184     }
185 
186     /**
187      * Sets the value of the queuetopiccanonicalname property.
188      * 
189      * @param value
190      *     allowed object is
191      *     {@link String }
192      *     
193      */
194     public void setQueuetopiccanonicalname(String value) {
195         this.queuetopiccanonicalname = value;
196     }
197 
198     public boolean isSetQueuetopiccanonicalname() {
199         return (this.queuetopiccanonicalname!= null);
200     }
201 
202 }