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