public class GKCardSettings
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
GKCardSettings.CardResult
CardResult encapsulates the result of basic settings actions.
|
static class |
GKCardSettings.CardSettingsResult |
static class |
GKCardSettings.FirmwareInformationResult |
static class |
GKCardSettings.Status |
| Constructor and Description |
|---|
GKCardSettings(GKCard card)
Create a
GKCardSettings that communicates with card. |
| Modifier and Type | Method and Description |
|---|---|
GKCardSettings.CardSettingsResult |
getCardSettings()
Retrieves card settings file
|
GKCardSettings.FirmwareInformationResult |
getFirmwareInformation()
Retrieves Firmware data from the GateKeeper Card.
|
GKCardSettings.CardResult |
updateCardSettings(GKCardConfiguration cardConfiguration)
Updates card settings file
|
GKCardSettings.CardResult |
updateFirmware(java.io.InputStream inputStream)
Send Firmware data to the GateKeeper Card.
|
public GKCardSettings(GKCard card)
GKCardSettings that communicates with card.card - the GKCard to be used with settings actionspublic GKCardSettings.CardResult updateFirmware(java.io.InputStream inputStream) throws java.io.IOException
inputStream - a stream with Firmware dataCardResult of the actionjava.io.IOException - when communication with the GateKeeper Card has been disrupted.public GKCardSettings.FirmwareInformationResult getFirmwareInformation() throws java.io.IOException
FirmwareInformationResult of the actionjava.io.IOException - when communication with the GateKeeper Card has been disrupted.public GKCardSettings.CardSettingsResult getCardSettings() throws java.io.IOException
CardSettingsResult which holds the card settingsjava.io.IOException - when communication with the GateKeeper Card has been disrupted.public GKCardSettings.CardResult updateCardSettings(GKCardConfiguration cardConfiguration) throws java.io.IOException
cardConfiguration - the GKCardConfiguration that is returned from getCardSettings, which can be updatedCardSettingsResult which holds the card settingsjava.io.IOException - when communication with the GateKeeper Card has been disrupted.