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.XmlRootElement;
9 import javax.xml.bind.annotation.XmlType;
10
11
12 /**
13 * <p>Java class for anonymous complex type.
14 *
15 * <p>The following schema fragment specifies the expected content contained within this class.
16 *
17 * <pre>
18 * <complexType>
19 * <complexContent>
20 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21 * <sequence>
22 * <element name="request" type="{urn:org:miloss:fgsms:services:interfaces:policyConfiguration}ServicePolicyRequestMsg"/>
23 * </sequence>
24 * </restriction>
25 * </complexContent>
26 * </complexType>
27 * </pre>
28 *
29 *
30 */
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "", propOrder = {
33 "request"
34 })
35 @XmlRootElement(name = "GetServicePolicy")
36 public class GetServicePolicy
37 implements Serializable
38 {
39
40 private final static long serialVersionUID = 1L;
41 @XmlElement(required = true)
42 protected ServicePolicyRequestMsg request;
43
44 /**
45 * Gets the value of the request property.
46 *
47 * @return
48 * possible object is
49 * {@link ServicePolicyRequestMsg }
50 *
51 */
52 public ServicePolicyRequestMsg getRequest() {
53 return request;
54 }
55
56 /**
57 * Sets the value of the request property.
58 *
59 * @param value
60 * allowed object is
61 * {@link ServicePolicyRequestMsg }
62 *
63 */
64 public void setRequest(ServicePolicyRequestMsg value) {
65 this.request = value;
66 }
67
68 public boolean isSetRequest() {
69 return (this.request!= null);
70 }
71
72 }