Package | Description |
---|---|
com.cloudpos.fingerprint |
This package provides the necessary classes and interfaces to interact with the fingerprint device.
|
com.cloudpos.msr |
This package provides access to the Magnetic Stripe Reader (MSR) device.
|
com.cloudpos.pinpad |
This package provides access to functionalities related to the PINPad device.
|
com.cloudpos.rfcardreader |
This package provides access to the contactless card reader device functionalities.
|
com.cloudpos.serialport |
The package is designed for handling serial port communication in the CloudPOS system.
|
com.cloudpos.signature |
The package is designed for managing signature capture in the CloudPOS system.
|
com.cloudpos.smartcardreader |
The package is designed for interacting with smart card reader devices in the CloudPOS system.
|
Modifier and Type | Method and Description |
---|---|
void |
FingerprintDevice.listenForEnroll(OperationListener listener,
int timeout)
Initiates an asynchronous process to enroll a fingerprint.
|
void |
FingerprintDevice.listenForFingerprint(OperationListener listener,
int timeout)
Initiates an asynchronous operation to scan a fingerprint.
|
Modifier and Type | Method and Description |
---|---|
void |
MSRDevice.listenForSwipe(OperationListener listener,
int timeout)
Initiates an asynchronous operation to read data from selected tracks of a swiped card.
|
Modifier and Type | Method and Description |
---|---|
void |
PINPadDevice.listenForOfflinePin(boolean voicePrompt,
OperationListener listener,
int timeout)
Waits for the user to enter their offline PIN.
|
void |
PINPadDevice.listenForPinBlock(KeyInfo keyInfo,
String pan,
boolean voicePrompt,
OperationListener listener,
int timeout)
Listens for user PIN input and calculates the encrypted PIN block asynchronously.
|
void |
PINPadDevice.listenForPinBlock(KeyInfo keyInfo,
String pan,
boolean voicePrompt,
OperationListener listener,
int timeout,
int mode,
byte[] IV)
Asynchronously listens for user PIN input and calculates an encrypted PIN block with a specific mode.
|
Modifier and Type | Method and Description |
---|---|
void |
RFCardReaderDevice.listenForCardAbsent(OperationListener listener,
int timeout)
Asynchronously listens for the removal of a card from the terminal.
|
void |
RFCardReaderDevice.listenForCardPresent(OperationListener listener,
int timeout)
Initiates the RF card reader to detect contactless cards using the selected communication mode.
|
Modifier and Type | Method and Description |
---|---|
void |
SerialPortDevice.listenForRead(int len,
OperationListener listener,
int timeout)
Asynchronously reads a specified number of bytes from the serial port.
|
Modifier and Type | Method and Description |
---|---|
void |
SignatureDevice.listenSignature(String transactionCode,
OperationListener listener,
int timeout)
Initiates an asynchronous operation to capture a signature.
|
Modifier and Type | Method and Description |
---|---|
void |
SmartCardReaderDevice.listenForCardAbsent(OperationListener listener,
int timeout)
Asynchronously listens for a smart card to be removed from the reader.
|
void |
SmartCardReaderDevice.listenForCardPresent(OperationListener listener,
int timeout)
Asynchronously listens for a smart card to be inserted into the reader.
|