1   
2   package org.kuali.ole.integration.cg.dto;
3   
4   import javax.xml.bind.annotation.XmlAccessType;
5   import javax.xml.bind.annotation.XmlAccessorType;
6   import javax.xml.bind.annotation.XmlType;
7   
8   
9   /**
10   * <p>Java class for hashMapElement complex type.
11   * 
12   * <p>The following schema fragment specifies the expected content contained within this class.
13   * 
14   * <pre>
15   * <complexType name="hashMapElement">
16   *   <complexContent>
17   *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18   *       <sequence>
19   *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
20   *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21   *       </sequence>
22   *     </restriction>
23   *   </complexContent>
24   * </complexType>
25   * </pre>
26   * 
27   * 
28   */
29  @XmlAccessorType(XmlAccessType.FIELD)
30  @XmlType(name = "hashMapElement", propOrder = {
31      "key",
32      "value"
33  })
34  public class HashMapElement {
35  
36      protected String key;
37      protected String value;
38  
39      /**
40       * Gets the value of the key property.
41       * 
42       * @return
43       *     possible object is
44       *     {@link String }
45       *     
46       */
47      public String getKey() {
48          return key;
49      }
50  
51      /**
52       * Sets the value of the key property.
53       * 
54       * @param value
55       *     allowed object is
56       *     {@link String }
57       *     
58       */
59      public void setKey(String value) {
60          this.key = value;
61      }
62  
63      /**
64       * Gets the value of the value property.
65       * 
66       * @return
67       *     possible object is
68       *     {@link String }
69       *     
70       */
71      public String getValue() {
72          return value;
73      }
74  
75      /**
76       * Sets the value of the value property.
77       * 
78       * @param value
79       *     allowed object is
80       *     {@link String }
81       *     
82       */
83      public void setValue(String value) {
84          this.value = value;
85      }
86  
87  }