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

org.adorsys.psd2.iso20022.camt054.PlainCardData1 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: 2018.03.27 at 07:28:42 AM CEST 
//


package org.adorsys.psd2.iso20022.camt054;

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


/**
 * 

Java class for PlainCardData1 complex type. * *

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

 * <complexType name="PlainCardData1">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PAN" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Min8Max28NumericText"/>
 *         <element name="CardSeqNb" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Min2Max3NumericText" minOccurs="0"/>
 *         <element name="FctvDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}ISOYearMonth" minOccurs="0"/>
 *         <element name="XpryDt" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}ISOYearMonth"/>
 *         <element name="SvcCd" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Exact3NumericText" minOccurs="0"/>
 *         <element name="TrckData" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}TrackData1" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="CardSctyCd" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}CardSecurityInformation1" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PlainCardData1", propOrder = { "pan", "cardSeqNb", "fctvDt", "xpryDt", "svcCd", "trckData", "cardSctyCd" }) public class PlainCardData1 { @XmlElement(name = "PAN", required = true) protected String pan; @XmlElement(name = "CardSeqNb") protected String cardSeqNb; @XmlElement(name = "FctvDt") @XmlSchemaType(name = "gYearMonth") protected XMLGregorianCalendar fctvDt; @XmlElement(name = "XpryDt", required = true) @XmlSchemaType(name = "gYearMonth") protected XMLGregorianCalendar xpryDt; @XmlElement(name = "SvcCd") protected String svcCd; @XmlElement(name = "TrckData") protected List trckData; @XmlElement(name = "CardSctyCd") protected CardSecurityInformation1 cardSctyCd; /** * Gets the value of the pan property. * * @return * possible object is * {@link String } * */ public String getPAN() { return pan; } /** * Sets the value of the pan property. * * @param value * allowed object is * {@link String } * */ public void setPAN(String value) { this.pan = value; } /** * Gets the value of the cardSeqNb property. * * @return * possible object is * {@link String } * */ public String getCardSeqNb() { return cardSeqNb; } /** * Sets the value of the cardSeqNb property. * * @param value * allowed object is * {@link String } * */ public void setCardSeqNb(String value) { this.cardSeqNb = value; } /** * Gets the value of the fctvDt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getFctvDt() { return fctvDt; } /** * Sets the value of the fctvDt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setFctvDt(XMLGregorianCalendar value) { this.fctvDt = value; } /** * Gets the value of the xpryDt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getXpryDt() { return xpryDt; } /** * Sets the value of the xpryDt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setXpryDt(XMLGregorianCalendar value) { this.xpryDt = value; } /** * Gets the value of the svcCd property. * * @return * possible object is * {@link String } * */ public String getSvcCd() { return svcCd; } /** * Sets the value of the svcCd property. * * @param value * allowed object is * {@link String } * */ public void setSvcCd(String value) { this.svcCd = value; } /** * Gets the value of the trckData 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 trckData property. * *

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

     *    getTrckData().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TrackData1 } * * */ public List getTrckData() { if (trckData == null) { trckData = new ArrayList(); } return this.trckData; } /** * Gets the value of the cardSctyCd property. * * @return * possible object is * {@link CardSecurityInformation1 } * */ public CardSecurityInformation1 getCardSctyCd() { return cardSctyCd; } /** * Sets the value of the cardSctyCd property. * * @param value * allowed object is * {@link CardSecurityInformation1 } * */ public void setCardSctyCd(CardSecurityInformation1 value) { this.cardSctyCd = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy