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