diff --git a/README.md b/README.md index 68a34a71..78eb3ec9 100644 --- a/README.md +++ b/README.md @@ -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! diff --git a/src/main/java/com/global/api/ConfiguredServices.java b/src/main/java/com/global/api/ConfiguredServices.java index af2ed385..767f2b92 100644 --- a/src/main/java/com/global/api/ConfiguredServices.java +++ b/src/main/java/com/global/api/ConfiguredServices.java @@ -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; diff --git a/src/main/java/com/global/api/ServicesContainer.java b/src/main/java/com/global/api/ServicesContainer.java index e4425418..abca0944 100644 --- a/src/main/java/com/global/api/ServicesContainer.java +++ b/src/main/java/com/global/api/ServicesContainer.java @@ -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 {