All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fixprotocol._2016.fixrepository.Annotation Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.12.16 at 01:24:30 PM CST 
//


package io.fixprotocol._2016.fixrepository;

import java.math.BigInteger;
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.XmlElements;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for annotation complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="annotation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice maxOccurs="unbounded">
 *         <element name="documentation" type="{http://fixprotocol.io/2016/fixrepository}documentation"/>
 *         <element name="appinfo" type="{http://fixprotocol.io/2016/fixrepository}appinfo"/>
 *       </choice>
 *       <attGroup ref="{http://fixprotocol.io/2016/fixrepository}entityAttribGrp"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "annotation", propOrder = { "documentationOrAppinfo" }) public class Annotation { @XmlElements({ @XmlElement(name = "documentation", type = Documentation.class), @XmlElement(name = "appinfo", type = Appinfo.class) }) protected List documentationOrAppinfo; @XmlAttribute(name = "added") protected String added; @XmlAttribute(name = "addedEP") protected BigInteger addedEP; @XmlAttribute(name = "changeType") protected ChangeTypeT changeType; @XmlAttribute(name = "deprecated") protected String deprecated; @XmlAttribute(name = "deprecatedEP") protected BigInteger deprecatedEP; @XmlAttribute(name = "issue") protected String issue; @XmlAttribute(name = "lastModified") protected String lastModified; @XmlAttribute(name = "replaced") protected String replaced; @XmlAttribute(name = "replacedEP") protected BigInteger replacedEP; @XmlAttribute(name = "replacedByField") protected BigInteger replacedByField; @XmlAttribute(name = "supported") protected SupportType supported; @XmlAttribute(name = "updated") protected String updated; @XmlAttribute(name = "updatedEP") protected BigInteger updatedEP; /** * Gets the value of the documentationOrAppinfo 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 documentationOrAppinfo property. * *

* For example, to add a new item, do as follows: *

     *    getDocumentationOrAppinfo().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Documentation } * {@link Appinfo } * * */ public List getDocumentationOrAppinfo() { if (documentationOrAppinfo == null) { documentationOrAppinfo = new ArrayList(); } return this.documentationOrAppinfo; } /** * Gets the value of the added property. * * @return * possible object is * {@link String } * */ public String getAdded() { return added; } /** * Sets the value of the added property. * * @param value * allowed object is * {@link String } * */ public void setAdded(String value) { this.added = value; } /** * Gets the value of the addedEP property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getAddedEP() { return addedEP; } /** * Sets the value of the addedEP property. * * @param value * allowed object is * {@link BigInteger } * */ public void setAddedEP(BigInteger value) { this.addedEP = value; } /** * Gets the value of the changeType property. * * @return * possible object is * {@link ChangeTypeT } * */ public ChangeTypeT getChangeType() { return changeType; } /** * Sets the value of the changeType property. * * @param value * allowed object is * {@link ChangeTypeT } * */ public void setChangeType(ChangeTypeT value) { this.changeType = value; } /** * Gets the value of the deprecated property. * * @return * possible object is * {@link String } * */ public String getDeprecated() { return deprecated; } /** * Sets the value of the deprecated property. * * @param value * allowed object is * {@link String } * */ public void setDeprecated(String value) { this.deprecated = value; } /** * Gets the value of the deprecatedEP property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDeprecatedEP() { return deprecatedEP; } /** * Sets the value of the deprecatedEP property. * * @param value * allowed object is * {@link BigInteger } * */ public void setDeprecatedEP(BigInteger value) { this.deprecatedEP = value; } /** * Gets the value of the issue property. * * @return * possible object is * {@link String } * */ public String getIssue() { return issue; } /** * Sets the value of the issue property. * * @param value * allowed object is * {@link String } * */ public void setIssue(String value) { this.issue = value; } /** * Gets the value of the lastModified property. * * @return * possible object is * {@link String } * */ public String getLastModified() { return lastModified; } /** * Sets the value of the lastModified property. * * @param value * allowed object is * {@link String } * */ public void setLastModified(String value) { this.lastModified = value; } /** * Gets the value of the replaced property. * * @return * possible object is * {@link String } * */ public String getReplaced() { return replaced; } /** * Sets the value of the replaced property. * * @param value * allowed object is * {@link String } * */ public void setReplaced(String value) { this.replaced = value; } /** * Gets the value of the replacedEP property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getReplacedEP() { return replacedEP; } /** * Sets the value of the replacedEP property. * * @param value * allowed object is * {@link BigInteger } * */ public void setReplacedEP(BigInteger value) { this.replacedEP = value; } /** * Gets the value of the replacedByField property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getReplacedByField() { return replacedByField; } /** * Sets the value of the replacedByField property. * * @param value * allowed object is * {@link BigInteger } * */ public void setReplacedByField(BigInteger value) { this.replacedByField = value; } /** * Gets the value of the supported property. * * @return * possible object is * {@link SupportType } * */ public SupportType getSupported() { if (supported == null) { return SupportType.SUPPORTED; } else { return supported; } } /** * Sets the value of the supported property. * * @param value * allowed object is * {@link SupportType } * */ public void setSupported(SupportType value) { this.supported = value; } /** * Gets the value of the updated property. * * @return * possible object is * {@link String } * */ public String getUpdated() { return updated; } /** * Sets the value of the updated property. * * @param value * allowed object is * {@link String } * */ public void setUpdated(String value) { this.updated = value; } /** * Gets the value of the updatedEP property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getUpdatedEP() { return updatedEP; } /** * Sets the value of the updatedEP property. * * @param value * allowed object is * {@link BigInteger } * */ public void setUpdatedEP(BigInteger value) { this.updatedEP = value; } }