
io.fixprotocol._2016.fixinterfaces.Interfaces Maven / Gradle / Ivy
Show all versions of interfaces2016 Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.09.19 at 11:25:31 AM CDT
//
package io.fixprotocol._2016.fixinterfaces;
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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.purl.dc.terms.ElementOrRefinementContainer;
/**
* 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 name="metadata" type="{http://purl.org/dc/terms/}elementOrRefinementContainer"/>
* <element name="interface" type="{http://fixprotocol.io/2016/fixinterfaces}interfaceType" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"metadata",
"_interface"
})
@XmlRootElement(name = "interfaces")
public class Interfaces {
@XmlElement(required = true)
protected ElementOrRefinementContainer metadata;
@XmlElement(name = "interface")
protected List _interface;
/**
* Gets the value of the metadata property.
*
* @return
* possible object is
* {@link ElementOrRefinementContainer }
*
*/
public ElementOrRefinementContainer getMetadata() {
return metadata;
}
/**
* Sets the value of the metadata property.
*
* @param value
* allowed object is
* {@link ElementOrRefinementContainer }
*
*/
public void setMetadata(ElementOrRefinementContainer value) {
this.metadata = value;
}
/**
* Gets the value of the interface 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 interface property.
*
*
* For example, to add a new item, do as follows:
*
* getInterface().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link InterfaceType }
*
*
*/
public List getInterface() {
if (_interface == null) {
_interface = new ArrayList();
}
return this._interface;
}
}