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   * request message
15   * 
16   * <p>Java class for GetHistoricalBrokerDetailsRequestMsg complex type.
17   * 
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   * 
20   * <pre>
21   * &lt;complexType name="GetHistoricalBrokerDetailsRequestMsg">
22   *   &lt;complexContent>
23   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24   *       &lt;sequence>
25   *         &lt;element name="range" type="{urn:org:miloss:fgsms:services:interfaces:common}TimeRange"/>
26   *         &lt;element name="uri" type="{http://www.w3.org/2001/XMLSchema}string"/>
27   *         &lt;element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
28   *       &lt;/sequence>
29   *     &lt;/restriction>
30   *   &lt;/complexContent>
31   * &lt;/complexType>
32   * </pre>
33   * 
34   * 
35   */
36  @XmlAccessorType(XmlAccessType.FIELD)
37  @XmlType(name = "GetHistoricalBrokerDetailsRequestMsg", propOrder = {
38      "range",
39      "uri",
40      "classification"
41  })
42  public class GetHistoricalBrokerDetailsRequestMsg
43      implements Serializable
44  {
45  
46      private final static long serialVersionUID = 1L;
47      @XmlElement(required = true)
48      protected TimeRange range;
49      @XmlElement(required = true)
50      protected String uri;
51      @XmlElement(required = true, nillable = true)
52      protected SecurityWrapper classification;
53  
54      /**
55       * Gets the value of the range property.
56       * 
57       * @return
58       *     possible object is
59       *     {@link TimeRange }
60       *     
61       */
62      public TimeRange getRange() {
63          return range;
64      }
65  
66      /**
67       * Sets the value of the range property.
68       * 
69       * @param value
70       *     allowed object is
71       *     {@link TimeRange }
72       *     
73       */
74      public void setRange(TimeRange value) {
75          this.range = value;
76      }
77  
78      public boolean isSetRange() {
79          return (this.range!= null);
80      }
81  
82      /**
83       * Gets the value of the uri property.
84       * 
85       * @return
86       *     possible object is
87       *     {@link String }
88       *     
89       */
90      public String getUri() {
91          return uri;
92      }
93  
94      /**
95       * Sets the value of the uri property.
96       * 
97       * @param value
98       *     allowed object is
99       *     {@link String }
100      *     
101      */
102     public void setUri(String value) {
103         this.uri = value;
104     }
105 
106     public boolean isSetUri() {
107         return (this.uri!= null);
108     }
109 
110     /**
111      * Gets the value of the classification property.
112      * 
113      * @return
114      *     possible object is
115      *     {@link SecurityWrapper }
116      *     
117      */
118     public SecurityWrapper getClassification() {
119         return classification;
120     }
121 
122     /**
123      * Sets the value of the classification property.
124      * 
125      * @param value
126      *     allowed object is
127      *     {@link SecurityWrapper }
128      *     
129      */
130     public void setClassification(SecurityWrapper value) {
131         this.classification = value;
132     }
133 
134     public boolean isSetClassification() {
135         return (this.classification!= null);
136     }
137 
138 }