Package com.adyen.model.nexo
Class DisplayOutput
- java.lang.Object
-
- com.adyen.model.nexo.DisplayOutput
-
public class DisplayOutput extends Object
Definition: Information to display and the way to process the display. -- Usage: It contains a complete display operation for a Display or an Input Device type. For the Input Devices, Diagnosis and EnableService, ResponseRequiredFlag and MinimumDisplayTime shall be absent.Java class for DisplayOutput complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DisplayOutput"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="OutputContent" type="{}OutputContent"/> <element name="MenuEntry" type="{}MenuEntry" maxOccurs="unbounded" minOccurs="0"/> <element name="OutputSignature" type="{}OutputSignature" minOccurs="0"/> </sequence> <attribute name="ResponseRequiredFlag" type="{}ResponseRequiredFlag" default="true" /> <attribute name="MinimumDisplayTime" type="{}MinimumDisplayTime" default="0" /> <attribute name="Device" use="required" type="{}DeviceType" /> <attribute name="InfoQualify" use="required" type="{}InfoQualifyType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected DeviceTypedeviceThe Device.protected InfoQualifyTypeinfoQualifyThe Info qualify.protected List<MenuEntry>menuEntryThe Menu entry.protected IntegerminimumDisplayTimeThe Minimum display time.protected OutputContentoutputContentThe Output content.protected byte[]outputSignatureThe Output signature.protected BooleanresponseRequiredFlagThe Response required flag.
-
Constructor Summary
Constructors Constructor Description DisplayOutput()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeviceTypegetDevice()Gets the value of the device property.InfoQualifyTypegetInfoQualify()Gets the value of the infoQualify property.List<MenuEntry>getMenuEntry()Gets the value of the menuEntry property.intgetMinimumDisplayTime()Gets the value of the minimumDisplayTime property.OutputContentgetOutputContent()Gets the value of the outputContent property.byte[]getOutputSignature()Gets the value of the outputSignature property.booleanisResponseRequiredFlag()Gets the value of the responseRequiredFlag property.voidsetDevice(DeviceType value)Sets the value of the device property.voidsetInfoQualify(InfoQualifyType value)Sets the value of the infoQualify property.voidsetMinimumDisplayTime(Integer value)Sets the value of the minimumDisplayTime property.voidsetOutputContent(OutputContent value)Sets the value of the outputContent property.voidsetOutputSignature(byte[] value)Sets the value of the outputSignature property.voidsetResponseRequiredFlag(Boolean value)Sets the value of the responseRequiredFlag property.
-
-
-
Field Detail
-
outputContent
protected OutputContent outputContent
The Output content.
-
outputSignature
protected byte[] outputSignature
The Output signature.
-
responseRequiredFlag
protected Boolean responseRequiredFlag
The Response required flag.
-
minimumDisplayTime
protected Integer minimumDisplayTime
The Minimum display time.
-
device
protected DeviceType device
The Device.
-
infoQualify
protected InfoQualifyType infoQualify
The Info qualify.
-
-
Method Detail
-
getOutputContent
public OutputContent getOutputContent()
Gets the value of the outputContent property.- Returns:
- possible object is
OutputContent
-
setOutputContent
public void setOutputContent(OutputContent value)
Sets the value of the outputContent property.- Parameters:
value- allowed object isOutputContent
-
getMenuEntry
public List<MenuEntry> getMenuEntry()
Gets the value of the menuEntry 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 menuEntry property.For example, to add a new item, do as follows:
getMenuEntry().add(newItem);Objects of the following type(s) are allowed in the list
MenuEntry- Returns:
- the menu entry
-
getOutputSignature
public byte[] getOutputSignature()
Gets the value of the outputSignature property.- Returns:
- possible object is byte[]
-
setOutputSignature
public void setOutputSignature(byte[] value)
Sets the value of the outputSignature property.- Parameters:
value- allowed object is byte[]
-
isResponseRequiredFlag
public boolean isResponseRequiredFlag()
Gets the value of the responseRequiredFlag property.- Returns:
- possible object is
Boolean
-
setResponseRequiredFlag
public void setResponseRequiredFlag(Boolean value)
Sets the value of the responseRequiredFlag property.- Parameters:
value- allowed object isBoolean
-
getMinimumDisplayTime
public int getMinimumDisplayTime()
Gets the value of the minimumDisplayTime property.- Returns:
- possible object is
Integer
-
setMinimumDisplayTime
public void setMinimumDisplayTime(Integer value)
Sets the value of the minimumDisplayTime property.- Parameters:
value- allowed object isInteger
-
getDevice
public DeviceType getDevice()
Gets the value of the device property.- Returns:
- possible object is
DeviceType
-
setDevice
public void setDevice(DeviceType value)
Sets the value of the device property.- Parameters:
value- allowed object isDeviceType
-
getInfoQualify
public InfoQualifyType getInfoQualify()
Gets the value of the infoQualify property.- Returns:
- possible object is
InfoQualifyType
-
setInfoQualify
public void setInfoQualify(InfoQualifyType value)
Sets the value of the infoQualify property.- Parameters:
value- allowed object isInfoQualifyType
-
-