Package com.adyen.model.nexo
Class CardReaderAPDUResponse
- java.lang.Object
-
- com.adyen.model.nexo.CardReaderAPDUResponse
-
public class CardReaderAPDUResponse extends Object
Definition: Content of the Card Reader APDU Response messageType. -- Usage: It contains the result of the requested service, APDU response sent by the chip of the card in response to the APDU request.Java class for CardReaderAPDUResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CardReaderAPDUResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Response" type="{}Response"/> <element name="APDUData" type="{}APDUData" minOccurs="0"/> </sequence> <attribute name="CardStatusWords" use="required" type="{}CardStatusWords" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]apduDataThe Apdu data.protected byte[]cardStatusWordsThe Card status words.protected ResponseresponseThe Response.
-
Constructor Summary
Constructors Constructor Description CardReaderAPDUResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getAPDUData()Gets the value of the apduData property.byte[]getCardStatusWords()Gets the value of the cardStatusWords property.ResponsegetResponse()Gets the value of the response property.voidsetAPDUData(byte[] value)Sets the value of the apduData property.voidsetCardStatusWords(byte[] value)Sets the value of the cardStatusWords property.voidsetResponse(Response value)Sets the value of the response property.
-
-
-
Field Detail
-
response
protected Response response
The Response.
-
apduData
protected byte[] apduData
The Apdu data.
-
cardStatusWords
protected byte[] cardStatusWords
The Card status words.
-
-
Method Detail
-
getResponse
public Response getResponse()
Gets the value of the response property.- Returns:
- possible object is
Response
-
setResponse
public void setResponse(Response value)
Sets the value of the response property.- Parameters:
value- allowed object isResponse
-
getAPDUData
public byte[] getAPDUData()
Gets the value of the apduData property.- Returns:
- possible object is byte[]
-
setAPDUData
public void setAPDUData(byte[] value)
Sets the value of the apduData property.- Parameters:
value- allowed object is byte[]
-
getCardStatusWords
public byte[] getCardStatusWords()
Gets the value of the cardStatusWords property.- Returns:
- possible object is byte[]
-
setCardStatusWords
public void setCardStatusWords(byte[] value)
Sets the value of the cardStatusWords property.- Parameters:
value- allowed object is byte[]
-
-