Class CardReaderInitResponse
- java.lang.Object
-
- com.adyen.model.nexo.CardReaderInitResponse
-
public class CardReaderInitResponse extends Object
Definition: Content of the Card Reader Init Response messageType. -- Usage: It contains the result of the Card Reader by the POI Card Reader (magnetic stripe content, or chip initialisation data).Java class for CardReaderInitResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CardReaderInitResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Response" type="{}Response"/> <element name="TrackData" type="{}TrackData" maxOccurs="4" minOccurs="0"/> <element name="ICCResetData" type="{}ICCResetData" minOccurs="0"/> </sequence> <attribute name="EntryMode" type="{}EntryMode" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<EntryModeType>entryModeThe Entry mode.protected ICCResetDataiccResetDataThe Icc reset data.protected ResponseresponseThe Response.protected List<TrackData>trackDataThe Track data.
-
Constructor Summary
Constructors Constructor Description CardReaderInitResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<EntryModeType>getEntryMode()Gets the value of the entryMode property.ICCResetDatagetICCResetData()Gets the value of the iccResetData property.ResponsegetResponse()Gets the value of the response property.List<TrackData>getTrackData()Gets the value of the trackData property.voidsetICCResetData(ICCResetData value)Sets the value of the iccResetData property.voidsetResponse(Response value)Sets the value of the response property.
-
-
-
Field Detail
-
response
protected Response response
The Response.
-
iccResetData
protected ICCResetData iccResetData
The Icc reset data.
-
entryMode
protected List<EntryModeType> entryMode
The Entry mode.
-
-
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
-
getTrackData
public List<TrackData> getTrackData()
Gets the value of the trackData 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 trackData property.For example, to add a new item, do as follows:
getTrackData().add(newItem);Objects of the following type(s) are allowed in the list
TrackData- Returns:
- the track data
-
getICCResetData
public ICCResetData getICCResetData()
Gets the value of the iccResetData property.- Returns:
- possible object is
ICCResetData
-
setICCResetData
public void setICCResetData(ICCResetData value)
Sets the value of the iccResetData property.- Parameters:
value- allowed object isICCResetData
-
getEntryMode
public List<EntryModeType> getEntryMode()
Gets the value of the entryMode 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 entryMode property.For example, to add a new item, do as follows:
getEntryMode().add(newItem);Objects of the following type(s) are allowed in the list
EntryModeType- Returns:
- the entry mode
-
-