// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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: 2014.10.14 at 12:55:33 PM CEST // package org.springframework.schema.beans; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.springframework.org/schema/beans}description" minOccurs="0"/> * <choice minOccurs="0"> * <element ref="{http://www.springframework.org/schema/beans}bean"/> * <element ref="{http://www.springframework.org/schema/beans}ref"/> * <element ref="{http://www.springframework.org/schema/beans}idref"/> * <element ref="{http://www.springframework.org/schema/beans}value"/> * <element ref="{http://www.springframework.org/schema/beans}null"/> * <element ref="{http://www.springframework.org/schema/beans}array"/> * <element ref="{http://www.springframework.org/schema/beans}list"/> * <element ref="{http://www.springframework.org/schema/beans}set"/> * <element ref="{http://www.springframework.org/schema/beans}map"/> * <element ref="{http://www.springframework.org/schema/beans}props"/> * <any namespace='##other'/> * </choice> * </sequence> * <attribute name="index" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "description", "bean", "refAttribute", "idref", "valueAttribute", "_null", "array", "list", "set", "map", "props", "any" }) @XmlRootElement(name = "constructor-arg") public class ConstructorArg { protected Description description; protected Bean bean; @XmlElement(name = "ref") protected Ref refAttribute; protected Idref idref; @XmlElement(name = "value") protected Value valueAttribute; @XmlElement(name = "null") protected Null _null; protected Array array; protected List list; protected Set set; protected Map map; protected Props props; @XmlAnyElement(lax = true) protected Object any; @XmlAttribute(name = "index") protected String index; @XmlAttribute(name = "type") protected String type; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "ref") protected String ref; @XmlAttribute(name = "value") protected String value; /** * Gets the value of the description property. * * @return * possible object is * {@link Description } * */ public Description getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link Description } * */ public void setDescription(Description value) { this.description = value; } /** * Gets the value of the bean property. * * @return * possible object is * {@link Bean } * */ public Bean getBean() { return bean; } /** * Sets the value of the bean property. * * @param value * allowed object is * {@link Bean } * */ public void setBean(Bean value) { this.bean = value; } /** * Gets the value of the refAttribute property. * * @return * possible object is * {@link Ref } * */ public Ref getRefAttribute() { return refAttribute; } /** * Sets the value of the refAttribute property. * * @param value * allowed object is * {@link Ref } * */ public void setRefAttribute(Ref value) { this.refAttribute = value; } /** * Gets the value of the idref property. * * @return * possible object is * {@link Idref } * */ public Idref getIdref() { return idref; } /** * Sets the value of the idref property. * * @param value * allowed object is * {@link Idref } * */ public void setIdref(Idref value) { this.idref = value; } /** * Gets the value of the valueAttribute property. * * @return * possible object is * {@link Value } * */ public Value getValueAttribute() { return valueAttribute; } /** * Sets the value of the valueAttribute property. * * @param value * allowed object is * {@link Value } * */ public void setValueAttribute(Value value) { this.valueAttribute = value; } /** * Gets the value of the null property. * * @return * possible object is * {@link Null } * */ public Null getNull() { return _null; } /** * Sets the value of the null property. * * @param value * allowed object is * {@link Null } * */ public void setNull(Null value) { this._null = value; } /** * Gets the value of the array property. * * @return * possible object is * {@link Array } * */ public Array getArray() { return array; } /** * Sets the value of the array property. * * @param value * allowed object is * {@link Array } * */ public void setArray(Array value) { this.array = value; } /** * Gets the value of the list property. * * @return * possible object is * {@link List } * */ public List getList() { return list; } /** * Sets the value of the list property. * * @param value * allowed object is * {@link List } * */ public void setList(List value) { this.list = value; } /** * Gets the value of the set property. * * @return * possible object is * {@link Set } * */ public Set getSet() { return set; } /** * Sets the value of the set property. * * @param value * allowed object is * {@link Set } * */ public void setSet(Set value) { this.set = value; } /** * Gets the value of the map property. * * @return * possible object is * {@link Map } * */ public Map getMap() { return map; } /** * Sets the value of the map property. * * @param value * allowed object is * {@link Map } * */ public void setMap(Map value) { this.map = value; } /** * Gets the value of the props property. * * @return * possible object is * {@link Props } * */ public Props getProps() { return props; } /** * Sets the value of the props property. * * @param value * allowed object is * {@link Props } * */ public void setProps(Props value) { this.props = value; } /** * Gets the value of the any property. * * @return * possible object is * {@link Object } * */ public Object getAny() { return any; } /** * Sets the value of the any property. * * @param value * allowed object is * {@link Object } * */ public void setAny(Object value) { this.any = value; } /** * Gets the value of the index property. * * @return * possible object is * {@link String } * */ public String getIndex() { return index; } /** * Sets the value of the index property. * * @param value * allowed object is * {@link String } * */ public void setIndex(String value) { this.index = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = 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 ref property. * * @return * possible object is * {@link String } * */ public String getRef() { return ref; } /** * Sets the value of the ref property. * * @param value * allowed object is * {@link String } * */ public void setRef(String value) { this.ref = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }