![JAR search and dependency download from the Maven repository](/logo.png)
com.hps.integrator.abstractions.ITerminalConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secure-submit Show documentation
Show all versions of secure-submit Show documentation
The SecureSubmit Java SDK simplifies processing of credit card transactions using Heartland Payment Systems' Portico Payment Gateway
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 - 2025 Weber Informatics LLC | Privacy Policy