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

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


/**
 * 

Java class for RgstDtlsGrp_Block_t complex type. * *

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

 * <complexType name="RgstDtlsGrp_Block_t">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <group ref="{http://www.fixprotocol.org/FIXML-5-0-SP2}RgstDtlsGrpElements"/>
 *       </sequence>
 *       <attGroup ref="{http://www.fixprotocol.org/FIXML-5-0-SP2}RgstDtlsGrpAttributes"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RgstDtlsGrp_Block_t", propOrder = { "pty" }) public class RgstDtlsGrpBlockT { @XmlElement(name = "Pty") protected List pty; @XmlAttribute(name = "RejRsnTxt") protected String rejRsnTxt; @XmlAttribute(name = "Email") protected String email; @XmlAttribute(name = "MailingDtls") protected String mailingDtls; @XmlAttribute(name = "MailingInst") protected String mailingInst; @XmlAttribute(name = "OwnerTyp") protected BigInteger ownerTyp; @XmlAttribute(name = "DtOfBirth") protected XMLGregorianCalendar dtOfBirth; @XmlAttribute(name = "InvestorCtryOfResidence") protected String investorCtryOfResidence; /** * 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 rejRsnTxt property. * * @return * possible object is * {@link String } * */ public String getRejRsnTxt() { return rejRsnTxt; } /** * Sets the value of the rejRsnTxt property. * * @param value * allowed object is * {@link String } * */ public void setRejRsnTxt(String value) { this.rejRsnTxt = value; } /** * Gets the value of the email property. * * @return * possible object is * {@link String } * */ public String getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link String } * */ public void setEmail(String value) { this.email = value; } /** * Gets the value of the mailingDtls property. * * @return * possible object is * {@link String } * */ public String getMailingDtls() { return mailingDtls; } /** * Sets the value of the mailingDtls property. * * @param value * allowed object is * {@link String } * */ public void setMailingDtls(String value) { this.mailingDtls = value; } /** * Gets the value of the mailingInst property. * * @return * possible object is * {@link String } * */ public String getMailingInst() { return mailingInst; } /** * Sets the value of the mailingInst property. * * @param value * allowed object is * {@link String } * */ public void setMailingInst(String value) { this.mailingInst = value; } /** * Gets the value of the ownerTyp property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getOwnerTyp() { return ownerTyp; } /** * Sets the value of the ownerTyp property. * * @param value * allowed object is * {@link BigInteger } * */ public void setOwnerTyp(BigInteger value) { this.ownerTyp = value; } /** * Gets the value of the dtOfBirth property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDtOfBirth() { return dtOfBirth; } /** * Sets the value of the dtOfBirth property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDtOfBirth(XMLGregorianCalendar value) { this.dtOfBirth = value; } /** * Gets the value of the investorCtryOfResidence property. * * @return * possible object is * {@link String } * */ public String getInvestorCtryOfResidence() { return investorCtryOfResidence; } /** * Sets the value of the investorCtryOfResidence property. * * @param value * allowed object is * {@link String } * */ public void setInvestorCtryOfResidence(String value) { this.investorCtryOfResidence = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy