Skip to content

Commit a15cffc

Browse files
Release 4.1.0
1 parent ed2a79e commit a15cffc

27 files changed

+3823
-194
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2021 wallee AG
189+
Copyright 2022 wallee AG
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

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>ch.postfinance</groupId>
2525
<artifactId>postfinancecheckout-java-sdk</artifactId>
26-
<version>4.0.2</version>
26+
<version>4.1.0</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 "ch.postfinance:postfinancecheckout-java-sdk:4.0.2"
36+
compile "ch.postfinance:postfinancecheckout-java-sdk:4.1.0"
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-4.0.2.jar`
49+
* `target/postfinancecheckout-java-sdk-4.1.0.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 = 'ch.postfinance'
5-
version = '4.0.2'
5+
version = '4.1.0'
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 := "ch.postfinance",
44
name := "postfinancecheckout-java-sdk",
5-
version := "4.0.2",
5+
version := "4.1.0",
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>4.0.2</version>
8+
<version>4.1.0</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/ch/postfinance/sdk/ApiClient.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,14 @@ public InternalTransferBankTransactionService getInternalTransferBankTransaction
293293
return this.internalTransferBankTransactionService;
294294
}
295295

296+
private InvoiceReconciliationRecordService invoiceReconciliationRecordService;
297+
public InvoiceReconciliationRecordService getInvoiceReconciliationRecordService() {
298+
if (this.invoiceReconciliationRecordService == null) {
299+
this.invoiceReconciliationRecordService = new InvoiceReconciliationRecordService(this);
300+
}
301+
return this.invoiceReconciliationRecordService;
302+
}
303+
296304
private LabelDescriptionGroupService labelDescriptionGroupService;
297305
public LabelDescriptionGroupService getLabelDescriptionGroupService() {
298306
if (this.labelDescriptionGroupService == null) {
@@ -589,6 +597,14 @@ public TransactionLightboxService getTransactionLightboxService() {
589597
return this.transactionLightboxService;
590598
}
591599

600+
private TransactionLineItemVersionService transactionLineItemVersionService;
601+
public TransactionLineItemVersionService getTransactionLineItemVersionService() {
602+
if (this.transactionLineItemVersionService == null) {
603+
this.transactionLineItemVersionService = new TransactionLineItemVersionService(this);
604+
}
605+
return this.transactionLineItemVersionService;
606+
}
607+
592608
private TransactionMobileSdkService transactionMobileSdkService;
593609
public TransactionMobileSdkService getTransactionMobileSdkService() {
594610
if (this.transactionMobileSdkService == null) {

0 commit comments

Comments
 (0)