Package org.calypsonet.terminal.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.CardSelectorSpi
getCardSelector()
Gets the card selector.
-
-
-
Method Detail
-
getCardSelector
CardSelectorSpi getCardSelector()
Gets the card selector.- Returns:
- A not null reference.
- Since:
- 1.0.0
-
getCardRequest
CardRequestSpi getCardRequest()
Gets the card request.- Returns:
- Null if no card request has been defined.
- Since:
- 1.0.0
-
-