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 * ServicePolicyResponseMsg
15 *
16 *
17 * <p>Java class for ServicePolicyResponseMsg complex type.
18 *
19 * <p>The following schema fragment specifies the expected content contained within this class.
20 *
21 * <pre>
22 * <complexType name="ServicePolicyResponseMsg">
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="policy" type="{urn:org:miloss:fgsms:services:interfaces:policyConfiguration}ServicePolicy"/>
28 * </sequence>
29 * </restriction>
30 * </complexContent>
31 * </complexType>
32 * </pre>
33 *
34 *
35 */
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "ServicePolicyResponseMsg", propOrder = {
38 "classification",
39 "policy"
40 })
41 public class ServicePolicyResponseMsg
42 implements Serializable
43 {
44
45 private final static long serialVersionUID = 1L;
46 @XmlElement(required = true)
47 protected SecurityWrapper classification;
48 @XmlElement(required = true)
49 protected ServicePolicy policy;
50
51 /**
52 * Gets the value of the classification property.
53 *
54 * @return
55 * possible object is
56 * {@link SecurityWrapper }
57 *
58 */
59 public SecurityWrapper getClassification() {
60 return classification;
61 }
62
63 /**
64 * Sets the value of the classification property.
65 *
66 * @param value
67 * allowed object is
68 * {@link SecurityWrapper }
69 *
70 */
71 public void setClassification(SecurityWrapper value) {
72 this.classification = value;
73 }
74
75 public boolean isSetClassification() {
76 return (this.classification!= null);
77 }
78
79 /**
80 * Gets the value of the policy property.
81 *
82 * @return
83 * possible object is
84 * {@link ServicePolicy }
85 *
86 */
87 public ServicePolicy getPolicy() {
88 return policy;
89 }
90
91 /**
92 * Sets the value of the policy property.
93 *
94 * @param value
95 * allowed object is
96 * {@link ServicePolicy }
97 *
98 */
99 public void setPolicy(ServicePolicy value) {
100 this.policy = value;
101 }
102
103 public boolean isSetPolicy() {
104 return (this.policy!= null);
105 }
106
107 }