Package org.calypsonet.terminal.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:
ApduResponseApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ApduRequestSpi>
getApduRequests()
Gets the list ofApduRequestSpi
.boolean
stopOnUnsuccessfulStatusWord()
Indicates if the processing of the requests must stop when an unexpected status word is received.
-
-
-
Method Detail
-
getApduRequests
java.util.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
-
-