Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ To install via [Maven](https://maven.apache.org/guides/introduction/introduction

You can find the latest SDK documentation along with code examples and test cards on the [Global Payments](https://developer.realexpayments.com) and [Heartland](https://developer.heartlandpaymentsystems.com/documentation) Developer Hubs.

In addition you can find working examples in the our example code repository.
In addition you can find working examples in our example code repository.

*Quick Tip*: The included [test suite](https://github.com/globalpayments/java-sdk/tree/master/src/test/java/com/global/api/tests) can be a great source of code samples for using the SDK!

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/global/api/ConfiguredServices.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class ConfiguredServices implements IDisposable {
@Getter @Setter private TableServiceConnector tableServiceConnector;
@Getter @Setter private PayrollConnector payrollConnector;
@Getter @Setter private IFraudCheckService fraudService;
@Getter @Setter private IFileProcessingService FileProcessingService;
@Getter @Setter private IFileProcessingService fileProcessingService;
@Setter @Getter private IBillingProvider billingProvider;
@Getter @Setter private IOpenBankingProvider openBankingProvider;
@Getter @Setter private IProPayProvider proPayProvider;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/global/api/ServicesContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public IProPayProvider getProPay(String configName) throws ConfigurationExceptio
if (configurations.containsKey(configName))
return configurations.get(configName).getProPayProvider();

throw new ConfigurationException("PayProProvider is not configured");
throw new ConfigurationException("ProPayProvider is not configured");
}

public IPayFacProvider getPayFac(String configName) throws ConfigurationException {
Expand Down