Package org.eclipse.keypop.card.spi
Interface CardSelectionRequestSpi
-
public interface CardSelectionRequestSpi
Data provided as input to the selection process.Embeds a card selector defining the target card profile and an optional card request to be executed after the card selection when successful.
- Since:
- 1.0.0
- See Also:
CardSelectionResponseApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CardRequestSpi
getCardRequest()
Gets the card request.java.util.Set<java.lang.Integer>
getSuccessfulSelectionStatusWords()
Gets the list of successful selection status words.
-
-
-
Method Detail
-
getSuccessfulSelectionStatusWords
java.util.Set<java.lang.Integer> getSuccessfulSelectionStatusWords()
Gets the list of successful selection status words.- Returns:
- A set of integer values containing at least 9000h.
- Since:
- 2.0.0
-
getCardRequest
CardRequestSpi getCardRequest()
Gets the card request.- Returns:
- Null if no card request has been defined.
- Since:
- 1.0.0
-
-