1
2 package org.miloss.fgsms.services.interfaces.policyconfiguration;
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.PolicyType;
10 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
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
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "ServicePolicyRequestMsg", propOrder = {
42 "classification",
43 "uri",
44 "policytype",
45 "machine",
46 "domain"
47 })
48 public class ServicePolicyRequestMsg
49 implements Serializable
50 {
51
52 private final static long serialVersionUID = 1L;
53 @XmlElement(required = true)
54 protected SecurityWrapper classification;
55 @XmlElement(name = "URI", required = true, nillable = true)
56 protected String uri;
57 @XmlElement(required = true, defaultValue = "Transactional", nillable = true)
58 protected PolicyType policytype;
59 @XmlElement(required = true, nillable = true)
60 protected String machine;
61 @XmlElement(required = true, nillable = true)
62 protected String domain;
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 public String getURI() {
101 return uri;
102 }
103
104
105
106
107
108
109
110
111
112 public void setURI(String value) {
113 this.uri = value;
114 }
115
116 public boolean isSetURI() {
117 return (this.uri!= null);
118 }
119
120
121
122
123
124
125
126
127
128 public PolicyType getPolicytype() {
129 return policytype;
130 }
131
132
133
134
135
136
137
138
139
140 public void setPolicytype(PolicyType value) {
141 this.policytype = value;
142 }
143
144 public boolean isSetPolicytype() {
145 return (this.policytype!= null);
146 }
147
148
149
150
151
152
153
154
155
156 public String getMachine() {
157 return machine;
158 }
159
160
161
162
163
164
165
166
167
168 public void setMachine(String value) {
169 this.machine = value;
170 }
171
172 public boolean isSetMachine() {
173 return (this.machine!= null);
174 }
175
176
177
178
179
180
181
182
183
184 public String getDomain() {
185 return domain;
186 }
187
188
189
190
191
192
193
194
195
196 public void setDomain(String value) {
197 this.domain = value;
198 }
199
200 public boolean isSetDomain() {
201 return (this.domain!= null);
202 }
203
204 }