org.adorsys.psd2.iso20022.camt053.PointOfInteraction1 Maven / Gradle / Ivy
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2017.12.20 um 11:40:51 PM CET
//
package org.adorsys.psd2.iso20022.camt053;
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.XmlType;
/**
* Java-Klasse für PointOfInteraction1 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="PointOfInteraction1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Id" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}GenericIdentification32"/>
* <element name="SysNm" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max70Text" minOccurs="0"/>
* <element name="GrpId" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max35Text" minOccurs="0"/>
* <element name="Cpblties" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}PointOfInteractionCapabilities1" minOccurs="0"/>
* <element name="Cmpnt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}PointOfInteractionComponent1" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PointOfInteraction1", propOrder = {
"id",
"sysNm",
"grpId",
"cpblties",
"cmpnt"
})
public class PointOfInteraction1 {
@XmlElement(name = "Id", required = true)
protected GenericIdentification32 id;
@XmlElement(name = "SysNm")
protected String sysNm;
@XmlElement(name = "GrpId")
protected String grpId;
@XmlElement(name = "Cpblties")
protected PointOfInteractionCapabilities1 cpblties;
@XmlElement(name = "Cmpnt")
protected List cmpnt;
/**
* Ruft den Wert der id-Eigenschaft ab.
*
* @return
* possible object is
* {@link GenericIdentification32 }
*
*/
public GenericIdentification32 getId() {
return id;
}
/**
* Legt den Wert der id-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link GenericIdentification32 }
*
*/
public void setId(GenericIdentification32 value) {
this.id = value;
}
/**
* Ruft den Wert der sysNm-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSysNm() {
return sysNm;
}
/**
* Legt den Wert der sysNm-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSysNm(String value) {
this.sysNm = value;
}
/**
* Ruft den Wert der grpId-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGrpId() {
return grpId;
}
/**
* Legt den Wert der grpId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGrpId(String value) {
this.grpId = value;
}
/**
* Ruft den Wert der cpblties-Eigenschaft ab.
*
* @return
* possible object is
* {@link PointOfInteractionCapabilities1 }
*
*/
public PointOfInteractionCapabilities1 getCpblties() {
return cpblties;
}
/**
* Legt den Wert der cpblties-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PointOfInteractionCapabilities1 }
*
*/
public void setCpblties(PointOfInteractionCapabilities1 value) {
this.cpblties = value;
}
/**
* Gets the value of the cmpnt 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 cmpnt property.
*
*
* For example, to add a new item, do as follows:
*
* getCmpnt().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PointOfInteractionComponent1 }
*
*
*/
public List getCmpnt() {
if (cmpnt == null) {
cmpnt = new ArrayList();
}
return this.cmpnt;
}
}