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.*;
8
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
37
38
39 @XmlRootElement
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "SetProcessListByMachineRequestMsg", propOrder = {
42 "classification",
43 "agentType",
44 "machineInformation",
45 "services"
46 })
47 public class SetProcessListByMachineRequestMsg
48 implements Serializable
49 {
50
51 private final static long serialVersionUID = 1L;
52 @XmlElement(required = true, nillable = true)
53 protected SecurityWrapper classification;
54 @XmlElement(required = true, nillable = true)
55 protected String agentType;
56 @XmlElement(name = "MachineInformation", required = true)
57 protected MachineInformation machineInformation;
58 @XmlElement(required = false, nillable = true)
59 protected List<String> services;
60
61
62
63
64
65
66
67
68
69 public SecurityWrapper getClassification() {
70 return classification;
71 }
72
73
74
75
76
77
78
79
80
81 public void setClassification(SecurityWrapper value) {
82 this.classification = value;
83 }
84
85 public boolean isSetClassification() {
86 return (this.classification!= null);
87 }
88
89
90
91
92
93
94
95
96
97 public String getAgentType() {
98 return agentType;
99 }
100
101
102
103
104
105
106
107
108
109 public void setAgentType(String value) {
110 this.agentType = value;
111 }
112
113 public boolean isSetAgentType() {
114 return (this.agentType!= null);
115 }
116
117
118
119
120
121
122
123
124
125 public MachineInformation getMachineInformation() {
126 return machineInformation;
127 }
128
129
130
131
132
133
134
135
136
137 public void setMachineInformation(MachineInformation value) {
138 this.machineInformation = value;
139 }
140
141 public boolean isSetMachineInformation() {
142 return (this.machineInformation!= null);
143 }
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167 public List<String> getServices() {
168 if (services == null) {
169 services = new ArrayList<String>();
170 }
171 return this.services;
172 }
173
174 public boolean isSetServices() {
175 return ((this.services!= null)&&(!this.services.isEmpty()));
176 }
177
178 public void unsetServices() {
179 this.services = null;
180 }
181
182 }