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