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
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
59
60
61
62
63
64
65 public SecurityWrapper getClassification() {
66 return classification;
67 }
68
69
70
71
72
73
74
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
87
88
89
90
91
92
93 public String getHostname() {
94 return hostname;
95 }
96
97
98
99
100
101
102
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
115
116
117
118
119
120
121 public String getDomainname() {
122 return domainname;
123 }
124
125
126
127
128
129
130
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
143
144
145
146
147
148
149 public String getUri() {
150 return uri;
151 }
152
153
154
155
156
157
158
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 }