Integrate our products into your software. Let's make payment happen together!
Look at all the possibilitiesWith this guide we will use the TerminalService to perform a Startup sequence for the terminal.
Startup should only be necessary once, when the terminal is newly installed.
Only possible for OPI-CH terminals.
ExternalTerminal externalTerminal = ExternalTerminal.builder() .ipAddress(ipAddress) // can be found using getting-started guide .port(terminalPort) // 4100 for OPI-NL/OPI-CH & 20002 for OPI-DE .compatibilityPort(compatibilityPort) // 4102 for OPI-NL/OPI-CH & 20007 for OPI-DE .socketMode(socketMode) // Dual-Socket for OPI-NL/OPI-CH & Single-Socket for OPI-DE & OPI-NL .terminalType(terminalType) // EnumType which contains terminal protocol combined attended/unattended type .build(); TerminalDelegate terminalDelegate = new TerminalDelegate() { @Override public void onPaymentAdministrationSuccess(PaymentAdministrationResult result) { //contains code which handles a successful terminal activation } @Override public void onError(Error error) { //contains code which handles a failed terminal activation } @Override public void printJournalReceipt(PaymentReceipt receipt) { //contains code which handles receiving a journal receipt } }; TerminalApi terminalService = new TerminalService(); terminalService.startup(externalTerminal, terminalDelegate);