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.SecurityWrapper;
10
11
12 /**
13 *
14 * Set Service Policy Request Msg
15 *
16 *
17 * <p>Java class for SetServicePolicyRequestMsg complex type.
18 *
19 * <p>The following schema fragment specifies the expected content contained within this class.
20 *
21 * <pre>
22 * <complexType name="SetServicePolicyRequestMsg">
23 * <complexContent>
24 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25 * <sequence>
26 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
27 * <element name="URL" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="policy" type="{urn:org:miloss:fgsms:services:interfaces:policyConfiguration}ServicePolicy"/>
29 * </sequence>
30 * </restriction>
31 * </complexContent>
32 * </complexType>
33 * </pre>
34 *
35 *
36 */
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "SetServicePolicyRequestMsg", propOrder = {
39 "classification",
40 "url",
41 "policy"
42 })
43 public class SetServicePolicyRequestMsg
44 implements Serializable
45 {
46
47 private final static long serialVersionUID = 1L;
48 @XmlElement(required = true, nillable = true)
49 protected SecurityWrapper classification;
50 @XmlElement(name = "URL", required = true, nillable = true)
51 protected String url;
52 @XmlElement(required = true, nillable = true)
53 protected ServicePolicy policy;
54
55 /**
56 * Gets the value of the classification property.
57 *
58 * @return
59 * possible object is
60 * {@link SecurityWrapper }
61 *
62 */
63 public SecurityWrapper getClassification() {
64 return classification;
65 }
66
67 /**
68 * Sets the value of the classification property.
69 *
70 * @param value
71 * allowed object is
72 * {@link SecurityWrapper }
73 *
74 */
75 public void setClassification(SecurityWrapper value) {
76 this.classification = value;
77 }
78
79 public boolean isSetClassification() {
80 return (this.classification!= null);
81 }
82
83 /**
84 * Gets the value of the url property.
85 *
86 * @return
87 * possible object is
88 * {@link String }
89 *
90 */
91 public String getURL() {
92 return url;
93 }
94
95 /**
96 * Sets the value of the url property.
97 *
98 * @param value
99 * allowed object is
100 * {@link String }
101 *
102 */
103 public void setURL(String value) {
104 this.url = value;
105 }
106
107 public boolean isSetURL() {
108 return (this.url!= null);
109 }
110
111 /**
112 * Gets the value of the policy property.
113 *
114 * @return
115 * possible object is
116 * {@link ServicePolicy }
117 *
118 */
119 public ServicePolicy getPolicy() {
120 return policy;
121 }
122
123 /**
124 * Sets the value of the policy property.
125 *
126 * @param value
127 * allowed object is
128 * {@link ServicePolicy }
129 *
130 */
131 public void setPolicy(ServicePolicy value) {
132 this.policy = value;
133 }
134
135 public boolean isSetPolicy() {
136 return (this.policy!= null);
137 }
138
139 }