org.plasma.sdo.access.provider.jdo.Map Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.10.17 at 11:26:33 AM EDT
//
package org.plasma.sdo.access.provider.jdo;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://java.sun.com/xml/ns/jdo/jdo}extension" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attGroup ref="{http://java.sun.com/xml/ns/jdo/jdo}attlist.map"/>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"extensions"
})
@XmlRootElement(name = "map")
public class Map {
@XmlElement(name = "extension")
protected List extensions;
@XmlAttribute(name = "key-type")
@XmlSchemaType(name = "anySimpleType")
protected String keyType;
@XmlAttribute(name = "embedded-key")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String embeddedKey;
@XmlAttribute(name = "dependent-key")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String dependentKey;
@XmlAttribute(name = "serialized-key")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String serializedKey;
@XmlAttribute(name = "value-type")
@XmlSchemaType(name = "anySimpleType")
protected String valueType;
@XmlAttribute(name = "embedded-value")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String embeddedValue;
@XmlAttribute(name = "dependent-value")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String dependentValue;
@XmlAttribute(name = "serialized-value")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String serializedValue;
/**
* Gets the value of the extensions property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the extensions property.
*
*
* For example, to add a new item, do as follows:
*
* getExtensions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Extension }
*
*
*/
public List getExtensions() {
if (extensions == null) {
extensions = new ArrayList();
}
return this.extensions;
}
/**
* Gets the value of the keyType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeyType() {
return keyType;
}
/**
* Sets the value of the keyType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKeyType(String value) {
this.keyType = value;
}
/**
* Gets the value of the embeddedKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmbeddedKey() {
return embeddedKey;
}
/**
* Sets the value of the embeddedKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmbeddedKey(String value) {
this.embeddedKey = value;
}
/**
* Gets the value of the dependentKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDependentKey() {
return dependentKey;
}
/**
* Sets the value of the dependentKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDependentKey(String value) {
this.dependentKey = value;
}
/**
* Gets the value of the serializedKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSerializedKey() {
return serializedKey;
}
/**
* Sets the value of the serializedKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSerializedKey(String value) {
this.serializedKey = value;
}
/**
* Gets the value of the valueType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValueType() {
return valueType;
}
/**
* Sets the value of the valueType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValueType(String value) {
this.valueType = value;
}
/**
* Gets the value of the embeddedValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmbeddedValue() {
return embeddedValue;
}
/**
* Sets the value of the embeddedValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmbeddedValue(String value) {
this.embeddedValue = value;
}
/**
* Gets the value of the dependentValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDependentValue() {
return dependentValue;
}
/**
* Sets the value of the dependentValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDependentValue(String value) {
this.dependentValue = value;
}
/**
* Gets the value of the serializedValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSerializedValue() {
return serializedValue;
}
/**
* Sets the value of the serializedValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSerializedValue(String value) {
this.serializedValue = value;
}
}