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.XmlType;
11 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
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 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "GetMonitoredItemsByMachineResponseMsg", propOrder = {
41 "classification",
42 "machinePolicy",
43 "processPolicy"
44 })
45 public class GetMonitoredItemsByMachineResponseMsg
46 implements Serializable
47 {
48
49 private final static long serialVersionUID = 1L;
50 @XmlElement(required = true, nillable = true)
51 protected SecurityWrapper classification;
52 @XmlElement(name = "MachinePolicy", required = true)
53 protected MachinePolicy machinePolicy;
54 @XmlElement(name = "ProcessPolicy")
55 protected List<ProcessPolicy> processPolicy;
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 MachinePolicy getMachinePolicy() {
94 return machinePolicy;
95 }
96
97
98
99
100
101
102
103
104
105 public void setMachinePolicy(MachinePolicy value) {
106 this.machinePolicy = value;
107 }
108
109 public boolean isSetMachinePolicy() {
110 return (this.machinePolicy!= null);
111 }
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135 public List<ProcessPolicy> getProcessPolicy() {
136 if (processPolicy == null) {
137 processPolicy = new ArrayList<ProcessPolicy>();
138 }
139 return this.processPolicy;
140 }
141
142 public boolean isSetProcessPolicy() {
143 return ((this.processPolicy!= null)&&(!this.processPolicy.isEmpty()));
144 }
145
146 public void unsetProcessPolicy() {
147 this.processPolicy = null;
148 }
149
150 }