Skip to content

Commit 95ddca3

Browse files
author
Thomas Hunziker
committed
Release 3.0.2
1 parent 7ea825a commit 95ddca3

File tree

53 files changed

+13161
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+13161
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Add this dependency to your project's POM:
2323
<dependency>
2424
<groupId>com.postfinancecheckout</groupId>
2525
<artifactId>postfinancecheckout-java-sdk</artifactId>
26-
<version>3.0.1</version>
26+
<version>3.0.2</version>
2727
<scope>compile</scope>
2828
</dependency>
2929
```
@@ -33,7 +33,7 @@ Add this dependency to your project's POM:
3333
Add this dependency to your project's build file:
3434

3535
```groovy
36-
compile "com.postfinancecheckout:postfinancecheckout-java-sdk:3.0.1"
36+
compile "com.postfinancecheckout:postfinancecheckout-java-sdk:3.0.2"
3737
```
3838

3939
### Others
@@ -46,7 +46,7 @@ mvn clean package
4646

4747
Then manually install the following JARs:
4848

49-
* `target/postfinancecheckout-java-sdk-3.0.1.jar`
49+
* `target/postfinancecheckout-java-sdk-3.0.2.jar`
5050
* `target/lib/*.jar`
5151

5252
## Usage

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.postfinancecheckout'
5-
version = '3.0.1'
5+
version = '3.0.2'
66

77
buildscript {
88
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.postfinancecheckout",
44
name := "postfinancecheckout-java-sdk",
5-
version := "3.0.1",
5+
version := "3.0.2",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>postfinancecheckout-java-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>postfinancecheckout-java-sdk</name>
8-
<version>3.0.1</version>
8+
<version>3.0.2</version>
99
<url>https://www.postfinance.ch/checkout</url>
1010
<description>The SDK for simplifying the integration with PostFinance Checkout API.</description>
1111
<scm>

src/main/java/com/postfinancecheckout/sdk/ApiClient.java

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,22 @@ public PaymentProcessorService getPaymentProcessorService() {
397397
return this.paymentProcessorService;
398398
}
399399

400+
private PaymentTerminalService paymentTerminalService;
401+
public PaymentTerminalService getPaymentTerminalService() {
402+
if (this.paymentTerminalService == null) {
403+
this.paymentTerminalService = new PaymentTerminalService(this);
404+
}
405+
return this.paymentTerminalService;
406+
}
407+
408+
private PaymentTerminalTillService paymentTerminalTillService;
409+
public PaymentTerminalTillService getPaymentTerminalTillService() {
410+
if (this.paymentTerminalTillService == null) {
411+
this.paymentTerminalTillService = new PaymentTerminalTillService(this);
412+
}
413+
return this.paymentTerminalTillService;
414+
}
415+
400416
private PermissionService permissionService;
401417
public PermissionService getPermissionService() {
402418
if (this.permissionService == null) {
@@ -437,6 +453,54 @@ public RefundService getRefundService() {
437453
return this.refundService;
438454
}
439455

456+
private ShopifyRecurringOrderService shopifyRecurringOrderService;
457+
public ShopifyRecurringOrderService getShopifyRecurringOrderService() {
458+
if (this.shopifyRecurringOrderService == null) {
459+
this.shopifyRecurringOrderService = new ShopifyRecurringOrderService(this);
460+
}
461+
return this.shopifyRecurringOrderService;
462+
}
463+
464+
private ShopifySubscriberService shopifySubscriberService;
465+
public ShopifySubscriberService getShopifySubscriberService() {
466+
if (this.shopifySubscriberService == null) {
467+
this.shopifySubscriberService = new ShopifySubscriberService(this);
468+
}
469+
return this.shopifySubscriberService;
470+
}
471+
472+
private ShopifySubscriptionProductService shopifySubscriptionProductService;
473+
public ShopifySubscriptionProductService getShopifySubscriptionProductService() {
474+
if (this.shopifySubscriptionProductService == null) {
475+
this.shopifySubscriptionProductService = new ShopifySubscriptionProductService(this);
476+
}
477+
return this.shopifySubscriptionProductService;
478+
}
479+
480+
private ShopifySubscriptionService shopifySubscriptionService;
481+
public ShopifySubscriptionService getShopifySubscriptionService() {
482+
if (this.shopifySubscriptionService == null) {
483+
this.shopifySubscriptionService = new ShopifySubscriptionService(this);
484+
}
485+
return this.shopifySubscriptionService;
486+
}
487+
488+
private ShopifySubscriptionSuspensionService shopifySubscriptionSuspensionService;
489+
public ShopifySubscriptionSuspensionService getShopifySubscriptionSuspensionService() {
490+
if (this.shopifySubscriptionSuspensionService == null) {
491+
this.shopifySubscriptionSuspensionService = new ShopifySubscriptionSuspensionService(this);
492+
}
493+
return this.shopifySubscriptionSuspensionService;
494+
}
495+
496+
private ShopifySubscriptionVersionService shopifySubscriptionVersionService;
497+
public ShopifySubscriptionVersionService getShopifySubscriptionVersionService() {
498+
if (this.shopifySubscriptionVersionService == null) {
499+
this.shopifySubscriptionVersionService = new ShopifySubscriptionVersionService(this);
500+
}
501+
return this.shopifySubscriptionVersionService;
502+
}
503+
440504
private ShopifyTransactionService shopifyTransactionService;
441505
public ShopifyTransactionService getShopifyTransactionService() {
442506
if (this.shopifyTransactionService == null) {
@@ -549,6 +613,14 @@ public TransactionService getTransactionService() {
549613
return this.transactionService;
550614
}
551615

616+
private TransactionTerminalService transactionTerminalService;
617+
public TransactionTerminalService getTransactionTerminalService() {
618+
if (this.transactionTerminalService == null) {
619+
this.transactionTerminalService = new TransactionTerminalService(this);
620+
}
621+
return this.transactionTerminalService;
622+
}
623+
552624
private TransactionVoidService transactionVoidService;
553625
public TransactionVoidService getTransactionVoidService() {
554626
if (this.transactionVoidService == null) {

0 commit comments

Comments
 (0)