Package org.eclipse.keyple.core.service
Interface ReaderEvent
-
- All Superinterfaces:
org.calypsonet.terminal.reader.CardReaderEvent
public interface ReaderEvent extends org.calypsonet.terminal.reader.CardReaderEvent
All information about a change of card state within anObservableReader
.In the case of a card insertion, the responses received by the reader are included in the event.
- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getPluginName()
Gets the name of the plugin from which the reader that generated the event comes from.java.lang.String
getReaderName()
org.calypsonet.terminal.reader.selection.ScheduledCardSelectionsResponse
getScheduledCardSelectionsResponse()
org.calypsonet.terminal.reader.CardReaderEvent.Type
getType()
-
-
-
Method Detail
-
getPluginName
java.lang.String getPluginName()
Gets the name of the plugin from which the reader that generated the event comes from.- Returns:
- A not empty string.
- Since:
- 2.0.0
-
getReaderName
java.lang.String getReaderName()
- Specified by:
getReaderName
in interfaceorg.calypsonet.terminal.reader.CardReaderEvent
- Since:
- 2.0.0
-
getType
org.calypsonet.terminal.reader.CardReaderEvent.Type getType()
- Specified by:
getType
in interfaceorg.calypsonet.terminal.reader.CardReaderEvent
- Since:
- 2.0.0
-
getScheduledCardSelectionsResponse
org.calypsonet.terminal.reader.selection.ScheduledCardSelectionsResponse getScheduledCardSelectionsResponse()
- Specified by:
getScheduledCardSelectionsResponse
in interfaceorg.calypsonet.terminal.reader.CardReaderEvent
- Since:
- 2.0.0
-
-