POSSUM is a Spring Boot framework Java project designed to present the functionality of all USB-connected POS peripherals that follow the JavaPOS spec (scanners, printer, lane light, line display, cash drawer, check reader, scale, etc.) as web services.
Functionality provided by POSSUM will enable use outside of localhost for use by mobile applications, kiosks, and sharing between point of sale systems to create modern point of sale user experiences.
POSSUM was created by Target Tech as an enterprise scale product to abstract point of sale peripheral hardware into discrete capabilities without regard to the differences between peripheral manufacturers and the implementation of their device drivers. This enables point of sale software developers to create point of sale software without hardware specific knowledge by calling simple web APIs for functions in a consistent manner.
POSSUM enables the following:
✅ Creates operational efficiencies
✅ Simplifies configuration management of retail peripherals
✅ Increases flexibility in the hardware lifecycle events
✅ Promotes competition through the commodification of peripheral devices
✅ Enables software developers to create modern point of sale experiences
Add origins to environment CORS_ORIGINS variable separated by a comma (,)
`CORS_ORIGINS=http://localhost:8100,http://localhost:7777`
- Click the “Code” dropdown
- Copy the link to the project
- Go to your terminal, then enter "git clone (project link)"
- Enter your credentials (if prompted)
- Once cloned, go to your development environment and click open, and navigate to the project in your finder/folder.
- Ensure the project is configured to build using Java 17
- Once opened, build the project using Gradle commands
- To run POSSUM on your local machine will require spring profile environment variable
export SPRING_PROFILES_ACTIVE=local - To run simulator use
./gradlew run -DuseSimulators=true
Requirements:
- Java 17
- POS Hardware drivers (provided by the manufacturer)
- Note: ensure all dependencies for physical POS devices are installed (i.e. libusb for Honeywell scanners)
Verified Supported OS:
-
CentOS 7
-
Ubuntu
-
NOTE: this is a Java application and can run many OS.
-
Follow Running POSSUM Locally to ensure you are able to compile and run POSSUM (NOTE: this does not need to be done on a POS computer)
-
Install the OS on the POS computer (refer to the Supported OS list above)
-
Install Java 17 on POS computer
-
Make the following directories:
sudo mkdir /opt/targetsudo mkdir /opt/target/possumsudo mkdir /opt/target/possum/externalLib
-
Compile POSSUM to create a jar file
-
Copy jar file and following src/main/resource files from the development machine to the POS computer /opt/target/possum directory
devcon.xmldevicestarter.shECIEncoding.csvIHSParser.csvLabelIdentifiers.csvPossumDeviceManager-1.0.jar
-
Install necessary libraries and JPOS drivers for your hardware (i.e. Honeywell scanners require libusb)
-
For devices not already supported, update the devcon.xml file
-
Launch POSSUM:
- Navigate to /opt/target/possum
- To run use
sudo domenv=labs sh devicestarter.sh - NOTE:
$domenvis an environment variable set in the platform and can be set to eitherlabsorstores. It is used indevicestarter.shto set the spring profile.labscoincides with thedevenvironment andstorescoincides with theprodenvironment. These environments are used to determine the kind of logging that will be present when running the application. Check out thelogback-spring.xmlfile for which logs will be present for each environment.
Scanner
| URL | Description | Parameters | Response |
|---|---|---|---|
🟢POST /v1/scanner/reconnect |
Reconnects scanners | None | None |
🔵GET /v1/scanner/healthstatus |
Reports scanners status | None | DeviceHealthResponse |
🔵GET /v1/scanner/health |
Reports the health of both scanners | None | DeviceHealthResponse |
🔵GET /v1/scanner/health/{scannerType} |
Reports the health of one scanner | HANDHELD, FLATBED, BOTH | DeviceHealthResponse |
🔵GET /v1/scan |
Retrieve barcode data from connected scanner | None | Barcode |
🔴DELETE /v1/scan |
Cancel previously requested scan | None | None |
🔵GET /v1/scan/{scannerType} |
Retrieve barcode data from one connected scanner | HANDHELD, FLATBED, BOTH | Barcode |
Scale
| URL | Description | Parameters | Response |
|---|---|---|---|
🟢POST /v1/scale/reconnect |
Reconnects scale | None | None |
🔵GET /v1/stableweight |
Retrieves stable weight from scale. Use for selling weighted items. | None | FormattedWeight |
🔵GET /v1/scale/healthstatus |
Reports scale status | None | DeviceHealthResponse |
🔵GET /v1/scale/health |
Reports scale health | None | DeviceHealthResponse |
🔵GET /v1/liveweight |
Retrieves current weight from scale. For informational purposes only - DO NOT use for selling. | None | SseEmitter |
Printer
| URL | Description | Parameters | Response |
|---|---|---|---|
🟢POST /v1/printer/reconnect |
Reconnects printer | None | None |
🟢POST /v1/print |
Sends entities to attached printer | Receipt Entities* | None |
🔵GET /v1/printer/healthstatus |
Reports printer status | None | DeviceHealthResponse |
🔵GET /v1/printer/health |
Reports printer health | None | DeviceHealthResponse |
*Includes any combination of BarcodeContent, ImageContent, and TextContent
Line Display
| URL | Description | Parameters | Response |
|---|---|---|---|
🟢POST /v1/linedisplay/reconnect |
Reconnects line display | None | None |
🟢POST /v1/linedisplay/display |
Displays text on 2x20. To clear out a line, omit it from the request. | LineDisplayData | None |
🔵GET /v1/linedisplay/healthstatus |
Reports line display status | None | DeviceHealthResponse |
🔵GET /v1/linedisplay/health |
Reports line display health | None | DeviceHealthResponse |
Device Availability
| URL | Description | Parameters | Response |
|---|---|---|---|
🔵GET /v1/peripherals |
Reports list of attached peripherals | None | DeviceAvailabilityResponse |
🔵GET /v1/health |
Reports health for all devices | None | DeviceHealthResponse |
🔵GET /v1/deviceerror |
Reports errors for all devices | None | SseEmitter |
Check
| URL | Description | Parameters | Response |
|---|---|---|---|
🔵GET /v1/check |
Read data from a check or slip | None | MicrData |
🟢POST /v1/check |
Print data on a check or slip | CheckPrintData* | None |
🔴DELETE /v1/check |
Cancel get check data call and/or eject the check from the MICR | None | None |
🟢POST /v1/check/reconnect |
Reconnect MICR | None | None |
🔵GET /v1/check/healthstatus |
Reports MICR status | None | DeviceHealthResponse |
🔵GET /v1/check/health |
Reports MICR health | None | DeviceHealthResponse |
*Includes any combination of BarcodeContent, ImageContent, and TextContent
Cash Drawer
| URL | Description | Parameters | Response |
|---|---|---|---|
🟢POST /v1/cashdrawer/reconnect |
Reconnect cash drawer | None | None |
🟢POST /v1/cashdrawer/open |
Opens the cash drawer and waits until the cash drawer is closed before returning | None | None |
🔵GET /v1/cashdrawer/healthstatus |
Reports cash drawer status | None | DeviceHealthResponse |
🔵GET /v1/cashdrawer/health |
Reports cash drawer health | None | DeviceHealthResponse |
Schemas
DeviceError
{
code string
description string
}
BarcodeContent
{
type string (enum)
[ TEXT, BARCODE, IMAGE ]
data string
barcodeType string (enum)
[ UPCA, UPCE, JAN8, EAN8, JAN13, EAN13, TF, ITF, CODABAR, CODE_39, CODE_93, CODE_128, UPCA_S, UPCE_S, UPCD1, UPCD2, UPCD3, UPCD4, UPCD5, EAN8_S, EAN13_S, EAN128, OCRA, OCRB, CODE_128_PARSED, RSS14, RSS_EXPANDED, GS1DATABAR, GS1DATABAR_E, GS1DATABAR_S, GS1DATABAR_E_S, PDF417, MAXICODE, DATAMATRIX, QRCODE, UQRCODE, AZTEC, UPDF417, OTHER ]
barcodeAlign string (enum)
[ LEFT, CENTER, RIGHT ]
textLocation string
[ NONE, ABOVE, BELOW ]
height integer ($int32)
width integer ($int32)
}
ImageContent
{
type string (enum)
[ TEXT, BARCODE, IMAGE ]
data string
imageFormatType string (enum)
[ BMP, JPEG, GIF ]
}
PrinterContent
{
type string (enum)
[ TEXT, BARCODE, IMAGE ]
data string
}
TextContent
{
type string (enum)
[ TEXT, BARCODE, IMAGE ]
data string
}
PrinterError
{
code string
description string
}
LineDisplayData
{
line1 string
line2 string
}
CashDrawerError
{
code string
description string
}
SseEmitter
{
timeout integer ($int64)
}
ScaleError
{
code string
description string
}
FormattedWeight
{
weight string
}
DeviceHealthResponse
{
deviceName string
healthStatus string (enum)
[ READY, NOTREADY ]
}
Barcode
{
data string
type string (enum)
[ UPCA, UPCA_S, UPCE, UPCE_S, UPCD1, UPCD2, UPCD3, UPCD4, UPCD5, EAN8, JAN8, EAN8_S, EAN13, JAN13, EAN13_S, EAN128, TWO_OF_FIVE, INTERLEAVED_TWO_OF_FIVE, CODABAR, CODE39, CODE93, CODE128, OCRA, OCRB, RSS14, RSS_EXPANDED, GS1DATABAR, GS1DATABAR_E, CCA, CCB, CCC, PDF417, MAXICODE, DATAMATRIX, QRCODE, UQRCODE, AZTEC, UPDF417, OTHER, UNKNOWN ]
source string (enum)
[ HANDHELD, FLATBED, BOTH ]
}
DeviceAvailabilityResponse
{
possumversion string
confirmversion string
devicelist DeviceConfigResponse
}
DeviceConfigResponse
{
devicename string
vidpid string
usbport string
manufacturer string
model string
config string
firmware string
serialnumber string
isFunctional boolean
attached boolean
}
MicrError
{
code string
description string
}
MicrData
{
account_number string
bank_number string
transit_number string
raw_data string
sequence_number string
}
POSSUM as a project leverages JavaPOS standards and service objects. To learn more about JavaPOS follow the links below.
https://www.omg.org/retail/unified-pos.htm
https://github.com/JavaPOSWorkingGroup
https://repo1.maven.org/maven2/org/javapos/javapos/1.14.1/
Please note that POSSUM should be able to function with other devices in the component categories listed provided the device is compatible with JPOS standards. In order to onboard a new device from one of these components, add the device entry to the devcon.xml and ensure the device is able to communicate with its service object provided by the device manufacturer.
For information on how to be added to this accepted device list, please read the Hardware Compatibility List documentation.
Flatbed Scanner
- Datalogic 2300 Scanner
- Datalogic 3550 Scanner
- Datalogic 8200 Scanner
- Datalogic 8400 Scanner Scale
- Datalogic 8400 Scanner
- Datalogic 8405 Scale
- Datalogic 9400 Scanner
- Datalogic 9400 Scanner Scale
- Zebra MP7000 Scanner
- Zebra MP7001 Scanner Scale
Handheld Scanner
- Honeywell 1900/1950 Scanner
MICR
- NCR 7167 MICR
- NCR 7169 MICR
Line Display
- NCR 5975 Line Display Serial
- NCR 5976 Line Display Serial
- NCR 5976 Line Display USB
- NCR 5977 Line Display USB
Receipt Printer
- NCR POS Printer F307
- NCR POS Printer F309
- NCR POS Printer 7167
- NCR POS Printer 7169
- NCR POS Printer EPIC 7199
- NCR POS Printer USB 7199
Cash Drawer
- Cash Drawer ELO Computer
- Cash Drawer NCR Computer
- Cash Drawer NCR via printer port
We welcome feature requests, bug reports and contributions for code and documentation.
Reporting bugs can be done in the GitHub issue tracker. Please search for existing issues first to help prevent duplicates.
POSSUM is already used in production environments, so any new changes/features/functionality must, where possible:
- Not alter existing behavior without an explicit config change
- Co-exist with older versions without disruption
- Must have a safe way to disable/roll-back
Patches are welcome, but we ask that any significant change start as an issue in the tracker, preferably before work is started.
Please ensure that all Pull Requests follow the provided template. If you believe a particular test does not need to be done for your PR please note [na] next to the checkbox.
As previously noted POSSUM should be able to function with other devices in the components listed provided the device is compatible with JPOS standards.
- Ensure proper unit tests are created corresponding to the device classes
- Verify that the changes do not impact simulator functionality
- Reach out to a Code Owner to test changes on physical devices
Please note that changes to device classes are not intended to be specific to a particular manufacturer. Each component is intended to function regardless of manufacturer.
Each new Component added to POSSUM requires a set of classes to be compliant with existing code structure.
componentname
├── entities
│ └── any classes necessary for a the particular device
├── simulator
│ ├── ComponentNameSimulatorController
│ ├── SimulatedJposComponentName
│ └── any other classes necessary for simulator functionality
├── ComponentNameConfig
├── ComponentNameController
├── ComponentNameDevice
├── ComponentNameListener (if necessary)
└── ComponentNameManager
This is the component folder named after the component. It should be all lowercase.
This subfolder is used to hold any classes that are necessary for device functionality but are specific to that component.
This subfolder is used to hold all classes specific to the simulator. The simulator is intended to act like a device would and is used in conjunction with the device API.
The API for the simulator. Contains API endpoints which are intended to provide device specific responses to requests made by the device API (detailed in the ComponentNameController class). All API endpoints should call a method in the SimulatedJposComponentName class for the endpoint's functionality.
The helper class for the simulator API. Contains all functionality for the simulated API endpoints.
Configures the component to ensure it is linked to its JPOS entry in the devcon.xml. This class is also used to differentiate whether simulation mode is being used or not. Each config file should be similar, please use an existing config file as a template for any new config file.
The API for the component. Contains API endpoints which are intended to be exposed to provide device functionality. Every controller should include:
- POST /reconnect
- GET /health
- GET /healthstatus
- any additional API endpoints specific to device functionality
All API endpoints should call a method in the ComponentNameManager class for the endpoint's functionality.
This class needs a unit testing class named ComponentNameControllerTest.
Used to directly call the JPOS service object for the device. All methods should be specific to device functionality as detailed in the documentation for the device's service object (as long as that service object is in compliance with JPOS standards for that device).
This class needs a unit testing class named ComponentNameDeviceTest.
Can either be a Device Listener class or an Event Listener interface.
A Device Listener class is used to listen for specific status updates from the device, which should be listed in the class.
An Event Listener interface should have any methods implemented in the ComponentNameManager and is used to listen for new event occurrences in the device.
The intermediary class between the ComponentNameController and ComponentNameDevice. Contains any code necessary for the API endpoint to work as intended and calls the ComponentNameDevice class for anything related to specific device functionality as it relates to the device's JPOS compliant service object.
This class needs a unit testing class named ComponentNameManagerTest.
POSSUM relies heavily on physical device testing to ensure that production environments are not impacted. As noted in our PR template, we request that contributers:
- Write proper unit tests with Mockito
- Utilize the existing simulator to test functionality
- Test on physical devices to ensure that existing functionality is not impacted (and note which devices are being tested in the 'Description of Testing' section)
We understand that testing on a physical device is not always possible. Please reach out to an engineer to test code changes on physical devices:
@arpal7
@LizZhang-00
@AwesomestChris
@rrenkor
@bmcecilia3

