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

org.fixprotocol.fixml.QuotReqLegsGrpBlockT 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.BigDecimal;
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;


/**
 * 

Java class for QuotReqLegsGrp_Block_t complex type. * *

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

 * <complexType name="QuotReqLegsGrp_Block_t">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <group ref="{http://www.fixprotocol.org/FIXML-5-0-SP2}QuotReqLegsGrpElements"/>
 *       </sequence>
 *       <attGroup ref="{http://www.fixprotocol.org/FIXML-5-0-SP2}QuotReqLegsGrpAttributes"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QuotReqLegsGrp_Block_t", propOrder = { "leg", "stip", "pty", "bnchmkCurve" }) public class QuotReqLegsGrpBlockT { @XmlElement(name = "Leg") protected InstrumentLegBlockT leg; @XmlElement(name = "Stip") protected List stip; @XmlElement(name = "Pty") protected List pty; @XmlElement(name = "BnchmkCurve") protected LegBenchmarkCurveDataBlockT bnchmkCurve; @XmlAttribute(name = "Qty") protected BigDecimal qty; @XmlAttribute(name = "OrdQty") protected BigDecimal ordQty; @XmlAttribute(name = "SwapTyp") protected BigInteger swapTyp; @XmlAttribute(name = "SettlTyp") protected String settlTyp; @XmlAttribute(name = "SettlDt") protected XMLGregorianCalendar settlDt; @XmlAttribute(name = "RefID") protected String refID; /** * Gets the value of the leg property. * * @return * possible object is * {@link InstrumentLegBlockT } * */ public InstrumentLegBlockT getLeg() { return leg; } /** * Sets the value of the leg property. * * @param value * allowed object is * {@link InstrumentLegBlockT } * */ public void setLeg(InstrumentLegBlockT value) { this.leg = value; } /** * Gets the value of the stip 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 stip property. * *

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

     *    getStip().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link LegStipulationsBlockT } * * */ public List getStip() { if (stip == null) { stip = new ArrayList(); } return this.stip; } /** * 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 NestedPartiesBlockT } * * */ public List getPty() { if (pty == null) { pty = new ArrayList(); } return this.pty; } /** * Gets the value of the bnchmkCurve property. * * @return * possible object is * {@link LegBenchmarkCurveDataBlockT } * */ public LegBenchmarkCurveDataBlockT getBnchmkCurve() { return bnchmkCurve; } /** * Sets the value of the bnchmkCurve property. * * @param value * allowed object is * {@link LegBenchmarkCurveDataBlockT } * */ public void setBnchmkCurve(LegBenchmarkCurveDataBlockT value) { this.bnchmkCurve = value; } /** * Gets the value of the qty property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getQty() { return qty; } /** * Sets the value of the qty property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setQty(BigDecimal value) { this.qty = value; } /** * Gets the value of the ordQty property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getOrdQty() { return ordQty; } /** * Sets the value of the ordQty property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setOrdQty(BigDecimal value) { this.ordQty = value; } /** * Gets the value of the swapTyp property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSwapTyp() { return swapTyp; } /** * Sets the value of the swapTyp property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSwapTyp(BigInteger value) { this.swapTyp = value; } /** * Gets the value of the settlTyp property. * * @return * possible object is * {@link String } * */ public String getSettlTyp() { return settlTyp; } /** * Sets the value of the settlTyp property. * * @param value * allowed object is * {@link String } * */ public void setSettlTyp(String value) { this.settlTyp = value; } /** * Gets the value of the settlDt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getSettlDt() { return settlDt; } /** * Sets the value of the settlDt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setSettlDt(XMLGregorianCalendar value) { this.settlDt = value; } /** * Gets the value of the refID property. * * @return * possible object is * {@link String } * */ public String getRefID() { return refID; } /** * Sets the value of the refID property. * * @param value * allowed object is * {@link String } * */ public void setRefID(String value) { this.refID = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy