// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-793 // 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: 2009.07.03 at 05:59:50 PM CEST // package com.sun.jersey.json.impl.rim; 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.XmlType; /** * * Represents an extensible attribute that may be dynamically added to any ExtensibleObjectType instance. * It is an important extensibility mechanism with ebRIM. * A SlotType instance contains a ValueList element which contains one or more ValueListItems. * It is the ValueListItems that represent the values associated with the SlotType instance. * * * <p>Java class for SlotType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SlotType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ValueList" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ValueListType"/> * </sequence> * <attribute name="name" use="required" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}LongName" /> * <attribute name="dataType" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}LongName" /> * <attribute name="collectionType" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}objectReferenceType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SlotType", propOrder = { "valueList" }) public class SlotType { @XmlElement(name = "ValueList", required = true) protected ValueListType valueList; @XmlAttribute(required = true) protected String name; @XmlAttribute protected String dataType; @XmlAttribute protected String collectionType; /** * Gets the value of the valueList property. * * @return * possible object is * {@link ValueListType } * */ public ValueListType getValueList() { return valueList; } /** * Sets the value of the valueList property. * * @param value * allowed object is * {@link ValueListType } * */ public void setValueList(ValueListType value) { this.valueList = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the dataType property. * * @return * possible object is * {@link String } * */ public String getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link String } * */ public void setDataType(String value) { this.dataType = value; } /** * Gets the value of the collectionType property. * * @return * possible object is * {@link String } * */ public String getCollectionType() { return collectionType; } /** * Sets the value of the collectionType property. * * @param value * allowed object is * {@link String } * */ public void setCollectionType(String value) { this.collectionType = value; } }