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