
io.fixprotocol._2016.fixinterfaces.Appinfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of interfaces2016 Show documentation
Show all versions of interfaces2016 Show documentation
XML schema for FIX Orchestra session configuration
The newest version!
//
// 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Usage specific annotation, optionally with link to
* an external reference or standard
*
*
* Java class for appinfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="appinfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="specUrl" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="langId" type="{http://www.w3.org/2001/XMLSchema}language" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "appinfo", propOrder = {
"content"
})
public class Appinfo {
@XmlValue
protected String content;
@XmlAttribute(name = "specUrl")
@XmlSchemaType(name = "anyURI")
protected String specUrl;
@XmlAttribute(name = "langId")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "language")
protected String langId;
/**
* Usage specific annotation, optionally with link to
* an external reference or standard
*
*
* @return
* possible object is
* {@link String }
*
*/
public String getContent() {
return content;
}
/**
* Sets the value of the content property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContent(String value) {
this.content = value;
}
/**
* Gets the value of the specUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpecUrl() {
return specUrl;
}
/**
* Sets the value of the specUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpecUrl(String value) {
this.specUrl = value;
}
/**
* Gets the value of the langId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLangId() {
return langId;
}
/**
* Sets the value of the langId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLangId(String value) {
this.langId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy