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

org.fixprotocol.fixml.OrderMassActionRequestMessageT Maven / Gradle / Ivy

The newest version!
//
// 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: 2017.02.01 at 08:15:28 PM CET 
//


package org.fixprotocol.fixml;

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.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * OrderMassActionRequest can be found in Volume 4 of the
 * 						specification
 * 
 * 

Java class for OrderMassActionRequest_message_t complex type. * *

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

 * <complexType name="OrderMassActionRequest_message_t">
 *   <complexContent>
 *     <extension base="{http://www.fixprotocol.org/FIXML-5-0-SP2}Abstract_message_t">
 *       <sequence>
 *         <group ref="{http://www.fixprotocol.org/FIXML-5-0-SP2}OrderMassActionRequestElements"/>
 *       </sequence>
 *       <attGroup ref="{http://www.fixprotocol.org/FIXML-5-0-SP2}OrderMassActionRequestAttributes"/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OrderMassActionRequest_message_t", propOrder = { "pty", "tgtPty", "instrmt", "undly" }) public class OrderMassActionRequestMessageT extends AbstractMessageT { @XmlElement(name = "Pty") protected List pty; @XmlElement(name = "TgtPty") protected List tgtPty; @XmlElement(name = "Instrmt") protected InstrumentBlockT instrmt; @XmlElement(name = "Undly") protected UnderlyingInstrumentBlockT undly; @XmlAttribute(name = "ClOrdID", required = true) protected String clOrdID; @XmlAttribute(name = "ClOrdID2") protected String clOrdID2; @XmlAttribute(name = "MassActionType", required = true) protected BigInteger massActionType; @XmlAttribute(name = "MassActionScope", required = true) protected String massActionScope; @XmlAttribute(name = "MktID") protected String mktID; @XmlAttribute(name = "MktSegID") protected String mktSegID; @XmlAttribute(name = "SesID") protected String sesID; @XmlAttribute(name = "SesSub") protected String sesSub; @XmlAttribute(name = "Side") protected String side; @XmlAttribute(name = "TxnTm", required = true) protected XMLGregorianCalendar txnTm; @XmlAttribute(name = "Txt") protected String txt; @XmlAttribute(name = "EncTxtLen") protected BigInteger encTxtLen; @XmlAttribute(name = "EncTxt") protected String encTxt; /** * Gets the value of the pty 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 pty property. * *

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

     *    getPty().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PartiesBlockT } * * */ public List getPty() { if (pty == null) { pty = new ArrayList(); } return this.pty; } /** * Gets the value of the tgtPty 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 tgtPty property. * *

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

     *    getTgtPty().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TargetPartiesBlockT } * * */ public List getTgtPty() { if (tgtPty == null) { tgtPty = new ArrayList(); } return this.tgtPty; } /** * Gets the value of the instrmt property. * * @return * possible object is * {@link InstrumentBlockT } * */ public InstrumentBlockT getInstrmt() { return instrmt; } /** * Sets the value of the instrmt property. * * @param value * allowed object is * {@link InstrumentBlockT } * */ public void setInstrmt(InstrumentBlockT value) { this.instrmt = value; } /** * Gets the value of the undly property. * * @return * possible object is * {@link UnderlyingInstrumentBlockT } * */ public UnderlyingInstrumentBlockT getUndly() { return undly; } /** * Sets the value of the undly property. * * @param value * allowed object is * {@link UnderlyingInstrumentBlockT } * */ public void setUndly(UnderlyingInstrumentBlockT value) { this.undly = value; } /** * Gets the value of the clOrdID property. * * @return * possible object is * {@link String } * */ public String getClOrdID() { return clOrdID; } /** * Sets the value of the clOrdID property. * * @param value * allowed object is * {@link String } * */ public void setClOrdID(String value) { this.clOrdID = value; } /** * Gets the value of the clOrdID2 property. * * @return * possible object is * {@link String } * */ public String getClOrdID2() { return clOrdID2; } /** * Sets the value of the clOrdID2 property. * * @param value * allowed object is * {@link String } * */ public void setClOrdID2(String value) { this.clOrdID2 = value; } /** * Gets the value of the massActionType property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMassActionType() { return massActionType; } /** * Sets the value of the massActionType property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMassActionType(BigInteger value) { this.massActionType = value; } /** * Gets the value of the massActionScope property. * * @return * possible object is * {@link String } * */ public String getMassActionScope() { return massActionScope; } /** * Sets the value of the massActionScope property. * * @param value * allowed object is * {@link String } * */ public void setMassActionScope(String value) { this.massActionScope = value; } /** * Gets the value of the mktID property. * * @return * possible object is * {@link String } * */ public String getMktID() { return mktID; } /** * Sets the value of the mktID property. * * @param value * allowed object is * {@link String } * */ public void setMktID(String value) { this.mktID = value; } /** * Gets the value of the mktSegID property. * * @return * possible object is * {@link String } * */ public String getMktSegID() { return mktSegID; } /** * Sets the value of the mktSegID property. * * @param value * allowed object is * {@link String } * */ public void setMktSegID(String value) { this.mktSegID = value; } /** * Gets the value of the sesID property. * * @return * possible object is * {@link String } * */ public String getSesID() { return sesID; } /** * Sets the value of the sesID property. * * @param value * allowed object is * {@link String } * */ public void setSesID(String value) { this.sesID = value; } /** * Gets the value of the sesSub property. * * @return * possible object is * {@link String } * */ public String getSesSub() { return sesSub; } /** * Sets the value of the sesSub property. * * @param value * allowed object is * {@link String } * */ public void setSesSub(String value) { this.sesSub = value; } /** * Gets the value of the side property. * * @return * possible object is * {@link String } * */ public String getSide() { return side; } /** * Sets the value of the side property. * * @param value * allowed object is * {@link String } * */ public void setSide(String value) { this.side = value; } /** * Gets the value of the txnTm property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTxnTm() { return txnTm; } /** * Sets the value of the txnTm property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTxnTm(XMLGregorianCalendar value) { this.txnTm = value; } /** * Gets the value of the txt property. * * @return * possible object is * {@link String } * */ public String getTxt() { return txt; } /** * Sets the value of the txt property. * * @param value * allowed object is * {@link String } * */ public void setTxt(String value) { this.txt = value; } /** * Gets the value of the encTxtLen property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getEncTxtLen() { return encTxtLen; } /** * Sets the value of the encTxtLen property. * * @param value * allowed object is * {@link BigInteger } * */ public void setEncTxtLen(BigInteger value) { this.encTxtLen = value; } /** * Gets the value of the encTxt property. * * @return * possible object is * {@link String } * */ public String getEncTxt() { return encTxt; } /** * Sets the value of the encTxt property. * * @param value * allowed object is * {@link String } * */ public void setEncTxt(String value) { this.encTxt = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy