// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.07.12 at 11:32:44 AM EEST // package org.agnitas.emm.springws.jaxb; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for MapItem complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="MapItem"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="key" type="{http://www.w3.org/2001/XMLSchema}anyType"/> * <element name="value" type="{http://www.w3.org/2001/XMLSchema}anyType"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MapItem", propOrder = { }) public class MapItem { @XmlElement(required = true) protected Object key; @XmlElement(required = true) protected Object value; /** * Gets the value of the key property. * * @return * possible object is * {@link Object } * */ public Object getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link Object } * */ public void setKey(Object value) { this.key = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link Object } * */ public Object getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link Object } * */ public void setValue(Object value) { this.value = value; } }