Skip to content

Commit

Permalink
Release 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Hunziker committed May 12, 2021
1 parent 7ea825a commit 95ddca3
Show file tree
Hide file tree
Showing 53 changed files with 13,161 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.postfinancecheckout</groupId>
<artifactId>postfinancecheckout-java-sdk</artifactId>
<version>3.0.1</version>
<version>3.0.2</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -33,7 +33,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "com.postfinancecheckout:postfinancecheckout-java-sdk:3.0.1"
compile "com.postfinancecheckout:postfinancecheckout-java-sdk:3.0.2"
```

### Others
Expand All @@ -46,7 +46,7 @@ mvn clean package

Then manually install the following JARs:

* `target/postfinancecheckout-java-sdk-3.0.1.jar`
* `target/postfinancecheckout-java-sdk-3.0.2.jar`
* `target/lib/*.jar`

## Usage
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.postfinancecheckout'
version = '3.0.1'
version = '3.0.2'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.postfinancecheckout",
name := "postfinancecheckout-java-sdk",
version := "3.0.1",
version := "3.0.2",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>postfinancecheckout-java-sdk</artifactId>
<packaging>jar</packaging>
<name>postfinancecheckout-java-sdk</name>
<version>3.0.1</version>
<version>3.0.2</version>
<url>https://www.postfinance.ch/checkout</url>
<description>The SDK for simplifying the integration with PostFinance Checkout API.</description>
<scm>
Expand Down
72 changes: 72 additions & 0 deletions src/main/java/com/postfinancecheckout/sdk/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,22 @@ public PaymentProcessorService getPaymentProcessorService() {
return this.paymentProcessorService;
}

private PaymentTerminalService paymentTerminalService;
public PaymentTerminalService getPaymentTerminalService() {
if (this.paymentTerminalService == null) {
this.paymentTerminalService = new PaymentTerminalService(this);
}
return this.paymentTerminalService;
}

private PaymentTerminalTillService paymentTerminalTillService;
public PaymentTerminalTillService getPaymentTerminalTillService() {
if (this.paymentTerminalTillService == null) {
this.paymentTerminalTillService = new PaymentTerminalTillService(this);
}
return this.paymentTerminalTillService;
}

private PermissionService permissionService;
public PermissionService getPermissionService() {
if (this.permissionService == null) {
Expand Down Expand Up @@ -437,6 +453,54 @@ public RefundService getRefundService() {
return this.refundService;
}

private ShopifyRecurringOrderService shopifyRecurringOrderService;
public ShopifyRecurringOrderService getShopifyRecurringOrderService() {
if (this.shopifyRecurringOrderService == null) {
this.shopifyRecurringOrderService = new ShopifyRecurringOrderService(this);
}
return this.shopifyRecurringOrderService;
}

private ShopifySubscriberService shopifySubscriberService;
public ShopifySubscriberService getShopifySubscriberService() {
if (this.shopifySubscriberService == null) {
this.shopifySubscriberService = new ShopifySubscriberService(this);
}
return this.shopifySubscriberService;
}

private ShopifySubscriptionProductService shopifySubscriptionProductService;
public ShopifySubscriptionProductService getShopifySubscriptionProductService() {
if (this.shopifySubscriptionProductService == null) {
this.shopifySubscriptionProductService = new ShopifySubscriptionProductService(this);
}
return this.shopifySubscriptionProductService;
}

private ShopifySubscriptionService shopifySubscriptionService;
public ShopifySubscriptionService getShopifySubscriptionService() {
if (this.shopifySubscriptionService == null) {
this.shopifySubscriptionService = new ShopifySubscriptionService(this);
}
return this.shopifySubscriptionService;
}

private ShopifySubscriptionSuspensionService shopifySubscriptionSuspensionService;
public ShopifySubscriptionSuspensionService getShopifySubscriptionSuspensionService() {
if (this.shopifySubscriptionSuspensionService == null) {
this.shopifySubscriptionSuspensionService = new ShopifySubscriptionSuspensionService(this);
}
return this.shopifySubscriptionSuspensionService;
}

private ShopifySubscriptionVersionService shopifySubscriptionVersionService;
public ShopifySubscriptionVersionService getShopifySubscriptionVersionService() {
if (this.shopifySubscriptionVersionService == null) {
this.shopifySubscriptionVersionService = new ShopifySubscriptionVersionService(this);
}
return this.shopifySubscriptionVersionService;
}

private ShopifyTransactionService shopifyTransactionService;
public ShopifyTransactionService getShopifyTransactionService() {
if (this.shopifyTransactionService == null) {
Expand Down Expand Up @@ -549,6 +613,14 @@ public TransactionService getTransactionService() {
return this.transactionService;
}

private TransactionTerminalService transactionTerminalService;
public TransactionTerminalService getTransactionTerminalService() {
if (this.transactionTerminalService == null) {
this.transactionTerminalService = new TransactionTerminalService(this);
}
return this.transactionTerminalService;
}

private TransactionVoidService transactionVoidService;
public TransactionVoidService getTransactionVoidService() {
if (this.transactionVoidService == null) {
Expand Down
Loading

0 comments on commit 95ddca3

Please sign in to comment.