1
2 package org.miloss.fgsms.services.interfaces.policyconfiguration;
3
4 import java.io.Serializable;
5 import java.util.ArrayList;
6 import java.util.List;
7 import javax.xml.bind.annotation.XmlAccessType;
8 import javax.xml.bind.annotation.XmlAccessorType;
9 import javax.xml.bind.annotation.XmlElement;
10 import javax.xml.bind.annotation.XmlSchemaType;
11 import javax.xml.bind.annotation.XmlType;
12 import java.util.Calendar;
13 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "GetProcessesListByMachineResponseMsg", propOrder = {
44 "classification",
45 "processName",
46 "machineInformation",
47 "lastupdateat"
48 })
49 public class GetProcessesListByMachineResponseMsg
50 implements Serializable
51 {
52
53 private final static long serialVersionUID = 1L;
54 @XmlElement(required = true, nillable = true)
55 protected SecurityWrapper classification;
56 @XmlElement(name = "ProcessName")
57 protected List<String> processName;
58 @XmlElement(name = "MachineInformation", required = true, nillable = true)
59 protected MachineInformation machineInformation;
60 @XmlElement(required = true, nillable = true)
61 @XmlSchemaType(name = "dateTime")
62 protected Calendar lastupdateat;
63
64
65
66
67
68
69
70
71
72 public SecurityWrapper getClassification() {
73 return classification;
74 }
75
76
77
78
79
80
81
82
83
84 public void setClassification(SecurityWrapper value) {
85 this.classification = value;
86 }
87
88 public boolean isSetClassification() {
89 return (this.classification!= null);
90 }
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114 public List<String> getProcessName() {
115 if (processName == null) {
116 processName = new ArrayList<String>();
117 }
118 return this.processName;
119 }
120
121 public boolean isSetProcessName() {
122 return ((this.processName!= null)&&(!this.processName.isEmpty()));
123 }
124
125 public void unsetProcessName() {
126 this.processName = null;
127 }
128
129
130
131
132
133
134
135
136
137 public MachineInformation getMachineInformation() {
138 return machineInformation;
139 }
140
141
142
143
144
145
146
147
148
149 public void setMachineInformation(MachineInformation value) {
150 this.machineInformation = value;
151 }
152
153 public boolean isSetMachineInformation() {
154 return (this.machineInformation!= null);
155 }
156
157
158
159
160
161
162
163
164
165 public Calendar getLastupdateat() {
166 return lastupdateat;
167 }
168
169
170
171
172
173
174
175
176
177 public void setLastupdateat(Calendar value) {
178 this.lastupdateat = value;
179 }
180
181 public boolean isSetLastupdateat() {
182 return (this.lastupdateat!= null);
183 }
184
185 }