
io.fixprotocol._2016.fixrepository.Protocol 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 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.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* 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">
* <all>
* <element ref="{http://fixprotocol.io/2016/fixrepository}actors" minOccurs="0"/>
* <element ref="{http://fixprotocol.io/2016/fixrepository}components"/>
* <element ref="{http://fixprotocol.io/2016/fixrepository}messages"/>
* </all>
* <attribute name="version" use="required" type="{http://fixprotocol.io/2016/fixrepository}Version_t" />
* <attribute name="guid" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="hasComponents" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="specUrl" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="applVerId" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
@XmlRootElement(name = "protocol")
public class Protocol {
protected Actors actors;
@XmlElement(required = true)
protected Components components;
@XmlElement(required = true)
protected Messages messages;
@XmlAttribute(name = "version", required = true)
protected String version;
@XmlAttribute(name = "guid")
protected String guid;
@XmlAttribute(name = "hasComponents", required = true)
protected boolean hasComponents;
@XmlAttribute(name = "specUrl")
@XmlSchemaType(name = "anyURI")
protected String specUrl;
@XmlAttribute(name = "namespace")
@XmlSchemaType(name = "anyURI")
protected String namespace;
@XmlAttribute(name = "applVerId")
protected String applVerId;
/**
* Gets the value of the actors property.
*
* @return
* possible object is
* {@link Actors }
*
*/
public Actors getActors() {
return actors;
}
/**
* Sets the value of the actors property.
*
* @param value
* allowed object is
* {@link Actors }
*
*/
public void setActors(Actors value) {
this.actors = value;
}
/**
* Gets the value of the components property.
*
* @return
* possible object is
* {@link Components }
*
*/
public Components getComponents() {
return components;
}
/**
* Sets the value of the components property.
*
* @param value
* allowed object is
* {@link Components }
*
*/
public void setComponents(Components value) {
this.components = value;
}
/**
* Gets the value of the messages property.
*
* @return
* possible object is
* {@link Messages }
*
*/
public Messages getMessages() {
return messages;
}
/**
* Sets the value of the messages property.
*
* @param value
* allowed object is
* {@link Messages }
*
*/
public void setMessages(Messages value) {
this.messages = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
/**
* Gets the value of the guid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGuid() {
return guid;
}
/**
* Sets the value of the guid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGuid(String value) {
this.guid = value;
}
/**
* Gets the value of the hasComponents property.
*
*/
public boolean isHasComponents() {
return hasComponents;
}
/**
* Sets the value of the hasComponents property.
*
*/
public void setHasComponents(boolean value) {
this.hasComponents = 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 namespace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamespace() {
return namespace;
}
/**
* Sets the value of the namespace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamespace(String value) {
this.namespace = value;
}
/**
* Gets the value of the applVerId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getApplVerId() {
return applVerId;
}
/**
* Sets the value of the applVerId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setApplVerId(String value) {
this.applVerId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy