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