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

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


package org.adorsys.psd2.iso20022.camt052;

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;


/**
 * 

Java class for PointOfInteractionComponent1 complex type. * *

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

 * <complexType name="PointOfInteractionComponent1">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="POICmpntTp" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}POIComponentType1Code"/>
 *         <element name="ManfctrId" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max35Text" minOccurs="0"/>
 *         <element name="Mdl" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max35Text" minOccurs="0"/>
 *         <element name="VrsnNb" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max16Text" minOccurs="0"/>
 *         <element name="SrlNb" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max35Text" minOccurs="0"/>
 *         <element name="ApprvlNb" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max70Text" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PointOfInteractionComponent1", propOrder = { "poiCmpntTp", "manfctrId", "mdl", "vrsnNb", "srlNb", "apprvlNb" }) public class PointOfInteractionComponent1 { @XmlElement(name = "POICmpntTp", required = true) @XmlSchemaType(name = "string") protected POIComponentType1Code poiCmpntTp; @XmlElement(name = "ManfctrId") protected String manfctrId; @XmlElement(name = "Mdl") protected String mdl; @XmlElement(name = "VrsnNb") protected String vrsnNb; @XmlElement(name = "SrlNb") protected String srlNb; @XmlElement(name = "ApprvlNb") protected List apprvlNb; /** * Gets the value of the poiCmpntTp property. * * @return * possible object is * {@link POIComponentType1Code } * */ public POIComponentType1Code getPOICmpntTp() { return poiCmpntTp; } /** * Sets the value of the poiCmpntTp property. * * @param value * allowed object is * {@link POIComponentType1Code } * */ public void setPOICmpntTp(POIComponentType1Code value) { this.poiCmpntTp = value; } /** * Gets the value of the manfctrId property. * * @return * possible object is * {@link String } * */ public String getManfctrId() { return manfctrId; } /** * Sets the value of the manfctrId property. * * @param value * allowed object is * {@link String } * */ public void setManfctrId(String value) { this.manfctrId = value; } /** * Gets the value of the mdl property. * * @return * possible object is * {@link String } * */ public String getMdl() { return mdl; } /** * Sets the value of the mdl property. * * @param value * allowed object is * {@link String } * */ public void setMdl(String value) { this.mdl = value; } /** * Gets the value of the vrsnNb property. * * @return * possible object is * {@link String } * */ public String getVrsnNb() { return vrsnNb; } /** * Sets the value of the vrsnNb property. * * @param value * allowed object is * {@link String } * */ public void setVrsnNb(String value) { this.vrsnNb = value; } /** * Gets the value of the srlNb property. * * @return * possible object is * {@link String } * */ public String getSrlNb() { return srlNb; } /** * Sets the value of the srlNb property. * * @param value * allowed object is * {@link String } * */ public void setSrlNb(String value) { this.srlNb = value; } /** * Gets the value of the apprvlNb 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 apprvlNb property. * *

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

     *    getApprvlNb().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getApprvlNb() { if (apprvlNb == null) { apprvlNb = new ArrayList(); } return this.apprvlNb; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy