Package | Description |
---|---|
org.eclipse.keyple.core.card.command |
Contains the basic APIs needed to build and parse the cards' APDUs.
|
org.eclipse.keyple.core.card.message |
Contains the POJOs carrying the data to or from the cards.
|
Modifier and Type | Field and Description |
---|---|
protected ApduRequest |
AbstractApduCommandBuilder.request
The byte array APDU request.
|
Modifier and Type | Method and Description |
---|---|
ApduRequest |
AbstractApduCommandBuilder.getApduRequest()
Gets
ApduRequest the request |
protected ApduRequest |
AbstractIso7816CommandBuilder.setApduRequest(byte cla,
CardCommand command,
byte p1,
byte p2,
byte[] dataIn,
java.lang.Byte le)
Helper method to create an ApduRequest from separated elements.
|
Constructor and Description |
---|
AbstractApduCommandBuilder(CardCommand commandRef,
ApduRequest request)
(protected)
The generic abstract constructor to build an APDU request with a command reference and a byte array. |
AbstractIso7816CommandBuilder(CardCommand commandReference,
ApduRequest request)
(protected)
Abstract constructor to build a command with a command reference and an ApduRequest . |
Modifier and Type | Method and Description |
---|---|
ApduRequest |
ApduRequest.setName(java.lang.String name)
Name this APDU request.
|
ApduRequest |
ApduRequest.setSuccessfulStatusCodes(java.util.Set<java.lang.Integer> successfulStatusCodes)
The successfulStatusCodes list indicates which status words in the response should be
considered successful even though they are different from 9000h.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<ApduRequest> |
CardRequest.getApduRequests()
Gets the list of
ApduRequest . |
Constructor and Description |
---|
CardRequest(java.util.List<ApduRequest> apduRequests)
Constructor.
|