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