All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hps.integrator.abstractions.ITerminalConfiguration Maven / Gradle / Ivy

Go to download

The SecureSubmit Java SDK simplifies processing of credit card transactions using Heartland Payment Systems' Portico Payment Gateway

There is a newer version: v2.5.2
Show newest version
package com.hps.integrator.abstractions;

import com.hps.integrator.infrastructure.HpsConfigurationException;
import com.hps.integrator.infrastructure.emums.*;

public interface ITerminalConfiguration {
    ConnectionModes getConnectionMode();
    void setConnectionMode(ConnectionModes connectionMode);
    String getIpAddress();
    void setIpAddress(String ipAddress);
    int getPort();
    void setPort(int port);
    BaudRate getBaudRate();
    void setBaudRate(BaudRate baudRate);
    Parity getParity();
    void setParity(Parity parity);
    StopBits getStopBits();
    void setStopBits(StopBits stopBits);
    DataBits getDataBits();
    void setDataBits(DataBits dataBits);
    int getTimeout();
    void setTimeout(int timeout);
    void validate() throws HpsConfigurationException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy