Package com.adyen.model.nexo
Class OutputContent
- java.lang.Object
-
- com.adyen.model.nexo.OutputContent
-
public class OutputContent extends Object
Definition: Content to display or print. -- Usage: This is a sequence of elements if they have different formats.Java class for OutputContent complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OutputContent"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="PredefinedContent" type="{}PredefinedContent" minOccurs="0"/> <element name="OutputText" type="{}OutputText" maxOccurs="unbounded" minOccurs="0"/> <element name="OutputXHTML" type="{}OutputXHTML" minOccurs="0"/> <element name="OutputBarcode" type="{}OutputBarcode" minOccurs="0"/> </sequence> <attribute name="OutputFormat" use="required" type="{}OutputFormatType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected OutputBarcodeoutputBarcodeThe Output barcode.protected OutputFormatTypeoutputFormatThe Output format.protected List<OutputText>outputTextThe Output text.protected byte[]outputXHTMLThe Output xhtml.protected PredefinedContentpredefinedContentThe Predefined content.
-
Constructor Summary
Constructors Constructor Description OutputContent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OutputBarcodegetOutputBarcode()Gets the value of the outputBarcode property.OutputFormatTypegetOutputFormat()Gets the value of the outputFormat property.List<OutputText>getOutputText()Gets the value of the outputText property.byte[]getOutputXHTML()Gets the value of the outputXHTML property.PredefinedContentgetPredefinedContent()Gets the value of the predefinedContent property.voidsetOutputBarcode(OutputBarcode value)Sets the value of the outputBarcode property.voidsetOutputFormat(OutputFormatType value)Sets the value of the outputFormat property.voidsetOutputText(List<OutputText> outputText)voidsetOutputXHTML(byte[] value)Sets the value of the outputXHTML property.voidsetPredefinedContent(PredefinedContent value)Sets the value of the predefinedContent property.
-
-
-
Field Detail
-
predefinedContent
protected PredefinedContent predefinedContent
The Predefined content.
-
outputText
protected List<OutputText> outputText
The Output text.
-
outputXHTML
protected byte[] outputXHTML
The Output xhtml.
-
outputBarcode
protected OutputBarcode outputBarcode
The Output barcode.
-
outputFormat
protected OutputFormatType outputFormat
The Output format.
-
-
Method Detail
-
getPredefinedContent
public PredefinedContent getPredefinedContent()
Gets the value of the predefinedContent property.- Returns:
- possible object is
PredefinedContent
-
setPredefinedContent
public void setPredefinedContent(PredefinedContent value)
Sets the value of the predefinedContent property.- Parameters:
value- allowed object isPredefinedContent
-
getOutputText
public List<OutputText> getOutputText()
Gets the value of the outputText 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
setmethod for the outputText property.For example, to add a new item, do as follows:
getOutputText().add(newItem);Objects of the following type(s) are allowed in the list
OutputText- Returns:
- the output text
-
setOutputText
public void setOutputText(List<OutputText> outputText)
-
getOutputXHTML
public byte[] getOutputXHTML()
Gets the value of the outputXHTML property.- Returns:
- possible object is byte[]
-
setOutputXHTML
public void setOutputXHTML(byte[] value)
Sets the value of the outputXHTML property.- Parameters:
value- allowed object is byte[]
-
getOutputBarcode
public OutputBarcode getOutputBarcode()
Gets the value of the outputBarcode property.- Returns:
- possible object is
OutputBarcode
-
setOutputBarcode
public void setOutputBarcode(OutputBarcode value)
Sets the value of the outputBarcode property.- Parameters:
value- allowed object isOutputBarcode
-
getOutputFormat
public OutputFormatType getOutputFormat()
Gets the value of the outputFormat property.- Returns:
- possible object is
OutputFormatType
-
setOutputFormat
public void setOutputFormat(OutputFormatType value)
Sets the value of the outputFormat property.- Parameters:
value- allowed object isOutputFormatType
-
-