Package org.eclipse.keypop.card.spi
Interface CardRequestSpi
public interface CardRequestSpi
Request grouping multiple APDUs to be executed consecutively.
Contains a list of ApduRequestSpi
to be sent to a card and a flag indicating whether
to stop processing in case of an unexpected status word in response to one of the APDUs.
- Since:
- 1.0.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGets the list ofApduRequestSpi
.boolean
Indicates if the processing of the requests must stop when an unexpected status word is received.
-
Method Details
-
getApduRequests
List<ApduRequestSpi> getApduRequests()Gets the list ofApduRequestSpi
.- Returns:
- A not empty list.
- Since:
- 1.0.0
-
stopOnUnsuccessfulStatusWord
boolean stopOnUnsuccessfulStatusWord()Indicates if the processing of the requests must stop when an unexpected status word is received.- Returns:
- True if the process must stop at the first unsuccessful status word received.
- Since:
- 1.0.0
-