org.adorsys.psd2.iso20022.camt053.DisplayCapabilities1 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.22 um 02:39:24 PM CET
//
package org.adorsys.psd2.iso20022.camt053;
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-Klasse für DisplayCapabilities1 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="DisplayCapabilities1">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="DispTp" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}UserInterface2Code"/>
* <element name="NbOfLines" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max3NumericText"/>
* <element name="LineWidth" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max3NumericText"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DisplayCapabilities1", propOrder = {
"dispTp",
"nbOfLines",
"lineWidth"
})
public class DisplayCapabilities1 {
@XmlElement(name = "DispTp", required = true)
@XmlSchemaType(name = "string")
protected UserInterface2Code dispTp;
@XmlElement(name = "NbOfLines", required = true)
protected String nbOfLines;
@XmlElement(name = "LineWidth", required = true)
protected String lineWidth;
/**
* Ruft den Wert der dispTp-Eigenschaft ab.
*
* @return
* possible object is
* {@link UserInterface2Code }
*
*/
public UserInterface2Code getDispTp() {
return dispTp;
}
/**
* Legt den Wert der dispTp-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link UserInterface2Code }
*
*/
public void setDispTp(UserInterface2Code value) {
this.dispTp = value;
}
/**
* Ruft den Wert der nbOfLines-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNbOfLines() {
return nbOfLines;
}
/**
* Legt den Wert der nbOfLines-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNbOfLines(String value) {
this.nbOfLines = value;
}
/**
* Ruft den Wert der lineWidth-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLineWidth() {
return lineWidth;
}
/**
* Legt den Wert der lineWidth-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLineWidth(String value) {
this.lineWidth = value;
}
}