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   * 			properties list, name value pairs
14   * 			
15   * 
16   * <p>Java class for keyNameValue complex type.
17   * 
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   * 
20   * <pre>
21   * &lt;complexType name="keyNameValue">
22   *   &lt;complexContent>
23   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24   *       &lt;sequence>
25   *         &lt;element name="propertyKey" type="{http://www.w3.org/2001/XMLSchema}string"/>
26   *         &lt;element name="propertyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
27   *         &lt;element name="propertyValue" 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 = "keyNameValue", propOrder = {
38      "propertyKey",
39      "propertyName",
40      "propertyValue"
41  })
42  public class KeyNameValue
43      implements Serializable
44  {
45  
46      private final static long serialVersionUID = 1L;
47      @XmlElement(required = true)
48      protected String propertyKey;
49      @XmlElement(required = true)
50      protected String propertyName;
51      @XmlElement(required = true, nillable = true)
52      protected String propertyValue;
53  
54      /**
55       * Gets the value of the propertyKey property.
56       * 
57       * @return
58       *     possible object is
59       *     {@link String }
60       *     
61       */
62      public String getPropertyKey() {
63          return propertyKey;
64      }
65  
66      /**
67       * Sets the value of the propertyKey property.
68       * 
69       * @param value
70       *     allowed object is
71       *     {@link String }
72       *     
73       */
74      public void setPropertyKey(String value) {
75          this.propertyKey = value;
76      }
77  
78      public boolean isSetPropertyKey() {
79          return (this.propertyKey!= null);
80      }
81  
82      /**
83       * Gets the value of the propertyName property.
84       * 
85       * @return
86       *     possible object is
87       *     {@link String }
88       *     
89       */
90      public String getPropertyName() {
91          return propertyName;
92      }
93  
94      /**
95       * Sets the value of the propertyName property.
96       * 
97       * @param value
98       *     allowed object is
99       *     {@link String }
100      *     
101      */
102     public void setPropertyName(String value) {
103         this.propertyName = value;
104     }
105 
106     public boolean isSetPropertyName() {
107         return (this.propertyName!= null);
108     }
109 
110     /**
111      * Gets the value of the propertyValue property.
112      * 
113      * @return
114      *     possible object is
115      *     {@link String }
116      *     
117      */
118     public String getPropertyValue() {
119         return propertyValue;
120     }
121 
122     /**
123      * Sets the value of the propertyValue property.
124      * 
125      * @param value
126      *     allowed object is
127      *     {@link String }
128      *     
129      */
130     public void setPropertyValue(String value) {
131         this.propertyValue = value;
132     }
133 
134     public boolean isSetPropertyValue() {
135         return (this.propertyValue!= null);
136     }
137 
138 }