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