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
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "DeleteServiceDependencyRequestMsg", propOrder = {
39 "classification",
40 "uri",
41 "action",
42 "dependenturi",
43 "dependentaction"
44 })
45 public class DeleteServiceDependencyRequestMsg
46 implements Serializable
47 {
48
49 private final static long serialVersionUID = 1L;
50 @XmlElement(required = true, nillable = true)
51 protected SecurityWrapper classification;
52 @XmlElement(required = true, nillable = true)
53 protected String uri;
54 @XmlElement(required = true, nillable = true)
55 protected String action;
56 @XmlElement(required = true, nillable = true)
57 protected String dependenturi;
58 @XmlElement(required = true, nillable = true)
59 protected String dependentaction;
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 getUri() {
98 return uri;
99 }
100
101
102
103
104
105
106
107
108
109 public void setUri(String value) {
110 this.uri = value;
111 }
112
113 public boolean isSetUri() {
114 return (this.uri!= null);
115 }
116
117
118
119
120
121
122
123
124
125 public String getAction() {
126 return action;
127 }
128
129
130
131
132
133
134
135
136
137 public void setAction(String value) {
138 this.action = value;
139 }
140
141 public boolean isSetAction() {
142 return (this.action!= null);
143 }
144
145
146
147
148
149
150
151
152
153 public String getDependenturi() {
154 return dependenturi;
155 }
156
157
158
159
160
161
162
163
164
165 public void setDependenturi(String value) {
166 this.dependenturi = value;
167 }
168
169 public boolean isSetDependenturi() {
170 return (this.dependenturi!= null);
171 }
172
173
174
175
176
177
178
179
180
181 public String getDependentaction() {
182 return dependentaction;
183 }
184
185
186
187
188
189
190
191
192
193 public void setDependentaction(String value) {
194 this.dependentaction = value;
195 }
196
197 public boolean isSetDependentaction() {
198 return (this.dependentaction!= null);
199 }
200
201 }