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 * request message
14 *
15 * <p>Java class for DeleteServiceDependencyRequestMsg complex type.
16 *
17 * <p>The following schema fragment specifies the expected content contained within this class.
18 *
19 * <pre>
20 * <complexType name="DeleteServiceDependencyRequestMsg">
21 * <complexContent>
22 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
23 * <sequence>
24 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
25 * <element name="uri" type="{http://www.w3.org/2001/XMLSchema}string"/>
26 * <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
27 * <element name="dependenturi" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="dependentaction" type="{http://www.w3.org/2001/XMLSchema}string"/>
29 * </sequence>
30 * </restriction>
31 * </complexContent>
32 * </complexType>
33 * </pre>
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 * Gets the value of the classification property.
63 *
64 * @return
65 * possible object is
66 * {@link SecurityWrapper }
67 *
68 */
69 public SecurityWrapper getClassification() {
70 return classification;
71 }
72
73 /**
74 * Sets the value of the classification property.
75 *
76 * @param value
77 * allowed object is
78 * {@link SecurityWrapper }
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 * Gets the value of the uri property.
91 *
92 * @return
93 * possible object is
94 * {@link String }
95 *
96 */
97 public String getUri() {
98 return uri;
99 }
100
101 /**
102 * Sets the value of the uri property.
103 *
104 * @param value
105 * allowed object is
106 * {@link String }
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 * Gets the value of the action property.
119 *
120 * @return
121 * possible object is
122 * {@link String }
123 *
124 */
125 public String getAction() {
126 return action;
127 }
128
129 /**
130 * Sets the value of the action property.
131 *
132 * @param value
133 * allowed object is
134 * {@link String }
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 * Gets the value of the dependenturi property.
147 *
148 * @return
149 * possible object is
150 * {@link String }
151 *
152 */
153 public String getDependenturi() {
154 return dependenturi;
155 }
156
157 /**
158 * Sets the value of the dependenturi property.
159 *
160 * @param value
161 * allowed object is
162 * {@link String }
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 * Gets the value of the dependentaction property.
175 *
176 * @return
177 * possible object is
178 * {@link String }
179 *
180 */
181 public String getDependentaction() {
182 return dependentaction;
183 }
184
185 /**
186 * Sets the value of the dependentaction property.
187 *
188 * @param value
189 * allowed object is
190 * {@link String }
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 }