com.global.api.serviceConfigs.BoardingConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.serviceConfigs;
import com.global.api.ConfiguredServices;
public class BoardingConfig extends Configuration {
private String portal;
public String getPortal() {
return portal;
}
public void setPortal(String portal) {
this.portal = portal;
}
public void configureContainer(ConfiguredServices services) {
// TODO: put this when completing the online boarding work
}
}