001
002package org.kuali.ole.integration.cg.dto;
003
004import javax.xml.bind.annotation.XmlAccessType;
005import javax.xml.bind.annotation.XmlAccessorType;
006import javax.xml.bind.annotation.XmlType;
007
008
009/**
010 * <p>Java class for hashMapElement complex type.
011 * 
012 * <p>The following schema fragment specifies the expected content contained within this class.
013 * 
014 * <pre>
015 * &lt;complexType name="hashMapElement">
016 *   &lt;complexContent>
017 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
018 *       &lt;sequence>
019 *         &lt;element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
020 *         &lt;element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
021 *       &lt;/sequence>
022 *     &lt;/restriction>
023 *   &lt;/complexContent>
024 * &lt;/complexType>
025 * </pre>
026 * 
027 * 
028 */
029@XmlAccessorType(XmlAccessType.FIELD)
030@XmlType(name = "hashMapElement", propOrder = {
031    "key",
032    "value"
033})
034public class HashMapElement {
035
036    protected String key;
037    protected String value;
038
039    /**
040     * Gets the value of the key property.
041     * 
042     * @return
043     *     possible object is
044     *     {@link String }
045     *     
046     */
047    public String getKey() {
048        return key;
049    }
050
051    /**
052     * Sets the value of the key property.
053     * 
054     * @param value
055     *     allowed object is
056     *     {@link String }
057     *     
058     */
059    public void setKey(String value) {
060        this.key = value;
061    }
062
063    /**
064     * Gets the value of the value property.
065     * 
066     * @return
067     *     possible object is
068     *     {@link String }
069     *     
070     */
071    public String getValue() {
072        return value;
073    }
074
075    /**
076     * Sets the value of the value property.
077     * 
078     * @param value
079     *     allowed object is
080     *     {@link String }
081     *     
082     */
083    public void setValue(String value) {
084        this.value = value;
085    }
086
087}