Package | Description |
---|---|
org.eclipse.keyple.core.card.message |
Contains the POJOs carrying the data to or from the cards.
|
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 |
---|---|
ChannelControl |
DefaultSelectionsRequest.getChannelControl()
Gets the indication whether the logic channel is to be kept open or closed
|
static ChannelControl |
ChannelControl.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChannelControl[] |
ChannelControl.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
CardResponse |
ProxyReader.transmitCardRequest(CardRequest cardRequest,
ChannelControl channelControl)
Transmits a single
CardRequest passed as an argument and returns a CardResponse . |
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 |
---|---|
protected CardResponse |
AbstractLocalReader.processCardRequest(CardRequest cardRequest,
ChannelControl channelControl)
Local implementation of
AbstractReader.processCardSelectionRequests(List,
MultiSelectionProcessing, ChannelControl) |
protected abstract CardResponse |
AbstractReader.processCardRequest(CardRequest cardRequest,
ChannelControl channelControl)
This method is the actual implementation of the process of a
CardRequest as defined by
ProxyReader.transmitCardRequest(CardRequest, ChannelControl) |
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) . |
CardResponse |
AbstractReader.transmitCardRequest(CardRequest cardRequest,
ChannelControl channelControl)
Transmits a single
CardRequest passed as an argument and returns a CardResponse . |
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 ChannelControl |
AbstractDefaultSelectionsRequest.getChannelControl()
Gets the indication whether the logic channel is to be kept open or closed
|