Package com.adyen.model.nexo
Class Input
- java.lang.Object
-
- com.adyen.model.nexo.Input
-
public class Input extends Object
Definition: Data entered by the user, related to the input command. -- Usage: Choice of a data which contains data entered by the user on the requested device, depending on the requested InputCommand:GetConfirmation: the input is in ConfirmedFlag.GetAnyKey: there is no input.GetFunctionKey: the input is inJava class for Input complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Input"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="ConfirmedFlag" type="{}ConfirmedFlag" minOccurs="0"/> <element name="FunctionKey" type="{}FunctionKey" minOccurs="0"/> <element name="TextInput" type="{}TextInput" minOccurs="0"/> <element name="DigitInput" type="{}DigitInput" minOccurs="0"/> <element name="Password" type="{}ContentInformation" minOccurs="0"/> <element name="MenuEntryNumber" type="{}MenuEntryNumber" minOccurs="0"/> </sequence> <attribute name="InputCommand" use="required" type="{}InputCommandType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BooleanconfirmedFlagThe Confirmed flag.protected StringdigitInputThe Digit input.protected StringfunctionKeyThe Function key.protected InputCommandTypeinputCommandThe Input command.protected Integer[]menuEntryNumberThe Menu entry number.protected ContentInformationpasswordThe Password.protected StringtextInputThe Text input.
-
Constructor Summary
Constructors Constructor Description Input()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDigitInput()Gets the value of the digitInput property.StringgetFunctionKey()Gets the value of the functionKey property.InputCommandTypegetInputCommand()Gets the value of the inputCommand property.Integer[]getMenuEntryNumber()Gets the value of the menuEntryNumber property.ContentInformationgetPassword()Gets the value of the password property.StringgetTextInput()Gets the value of the textInput property.BooleanisConfirmedFlag()Gets the value of the confirmedFlag property.voidsetConfirmedFlag(Boolean value)Sets the value of the confirmedFlag property.voidsetDigitInput(String value)Sets the value of the digitInput property.voidsetFunctionKey(String value)Sets the value of the functionKey property.voidsetInputCommand(InputCommandType value)Sets the value of the inputCommand property.voidsetMenuEntryNumber(Integer[] value)Sets the value of the menuEntryNumber property.voidsetPassword(ContentInformation value)Sets the value of the password property.voidsetTextInput(String value)Sets the value of the textInput property.
-
-
-
Field Detail
-
confirmedFlag
protected Boolean confirmedFlag
The Confirmed flag.
-
functionKey
protected String functionKey
The Function key.
-
textInput
protected String textInput
The Text input.
-
digitInput
protected String digitInput
The Digit input.
-
password
protected ContentInformation password
The Password.
-
menuEntryNumber
protected Integer[] menuEntryNumber
The Menu entry number.
-
inputCommand
protected InputCommandType inputCommand
The Input command.
-
-
Method Detail
-
isConfirmedFlag
public Boolean isConfirmedFlag()
Gets the value of the confirmedFlag property.- Returns:
- possible object is
Boolean
-
setConfirmedFlag
public void setConfirmedFlag(Boolean value)
Sets the value of the confirmedFlag property.- Parameters:
value- allowed object isBoolean
-
getFunctionKey
public String getFunctionKey()
Gets the value of the functionKey property.- Returns:
- possible object is
String
-
setFunctionKey
public void setFunctionKey(String value)
Sets the value of the functionKey property.- Parameters:
value- allowed object isString
-
getTextInput
public String getTextInput()
Gets the value of the textInput property.- Returns:
- possible object is
String
-
setTextInput
public void setTextInput(String value)
Sets the value of the textInput property.- Parameters:
value- allowed object isString
-
getDigitInput
public String getDigitInput()
Gets the value of the digitInput property.- Returns:
- possible object is
String
-
setDigitInput
public void setDigitInput(String value)
Sets the value of the digitInput property.- Parameters:
value- allowed object isString
-
getPassword
public ContentInformation getPassword()
Gets the value of the password property.- Returns:
- possible object is
ContentInformation
-
setPassword
public void setPassword(ContentInformation value)
Sets the value of the password property.- Parameters:
value- allowed object isContentInformation
-
getMenuEntryNumber
public Integer[] getMenuEntryNumber()
Gets the value of the menuEntryNumber property.- Returns:
- possible object is Array of
Integer
-
setMenuEntryNumber
public void setMenuEntryNumber(Integer[] value)
Sets the value of the menuEntryNumber property.- Parameters:
value- allowed object is Array ofInteger
-
getInputCommand
public InputCommandType getInputCommand()
Gets the value of the inputCommand property.- Returns:
- possible object is
InputCommandType
-
setInputCommand
public void setInputCommand(InputCommandType value)
Sets the value of the inputCommand property.- Parameters:
value- allowed object isInputCommandType
-
-