Package | Description |
---|---|
org.eclipse.keyple.core.card.message |
Contains the POJOs carrying the data to or from the cards.
|
org.eclipse.keyple.core.card.selection |
Contains the classes to handle the card selection process.
|
org.eclipse.keyple.core.plugin |
Contains the plugin and reader management classes.
|
org.eclipse.keyple.core.service.event |
Contains the necessary APIs for observing plugins and readers (used by ticketing applications).
|
Modifier and Type | Method and Description |
---|---|
MultiSelectionProcessing |
DefaultSelectionsRequest.getMultiSelectionProcessing()
Gets the indication whether the selection process should stop after the first matching case or
process all of them.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<CardSelectionResponse> |
ProxyReader.transmitCardSelectionRequests(java.util.List<CardSelectionRequest> cardSelectionRequests,
MultiSelectionProcessing multiSelectionProcessing,
ChannelControl channelControl)
Transmits the list of
CardSelectionRequest and gets in return a list of CardSelectionResponse . |
Constructor and Description |
---|
DefaultSelectionsRequest(java.util.List<CardSelectionRequest> cardSelectionRequests,
MultiSelectionProcessing multiSelectionProcessing,
ChannelControl channelControl)
Builds a DefaultSelectionsRequest from a list of selection cases and two enum constants guiding
the expected behaviour of the selection process.
|
Modifier and Type | Method and Description |
---|---|
static MultiSelectionProcessing |
MultiSelectionProcessing.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MultiSelectionProcessing[] |
MultiSelectionProcessing.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
CardSelectionsService(MultiSelectionProcessing multiSelectionProcessing)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
protected java.util.List<CardSelectionResponse> |
AbstractLocalReader.processCardSelectionRequests(java.util.List<CardSelectionRequest> cardSelectionRequests,
MultiSelectionProcessing multiSelectionProcessing,
ChannelControl channelControl)
Local implementation of
AbstractReader.processCardSelectionRequests(List,
MultiSelectionProcessing, ChannelControl) |
protected abstract java.util.List<CardSelectionResponse> |
AbstractReader.processCardSelectionRequests(java.util.List<CardSelectionRequest> cardSelectionRequests,
MultiSelectionProcessing multiSelectionProcessing,
ChannelControl channelControl)
This method is the actual implementation of the process of transmitting a list of
CardSelectionRequest as defined by ProxyReader.transmitCardSelectionRequests(List,
MultiSelectionProcessing, ChannelControl) . |
java.util.List<CardSelectionResponse> |
AbstractReader.transmitCardSelectionRequests(java.util.List<CardSelectionRequest> cardSelectionRequests,
MultiSelectionProcessing multiSelectionProcessing,
ChannelControl channelControl)
Transmits the list of
CardSelectionRequest and gets in return a list of CardSelectionResponse . |
Modifier and Type | Method and Description |
---|---|
protected abstract MultiSelectionProcessing |
AbstractDefaultSelectionsRequest.getMultiSelectionProcessing()
Gets the indication whether the selection process should stop after the first matching case or
process all of them.
|