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