Skip to content

Commit

Permalink
Release 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sauliususoniswallee committed Apr 22, 2022
1 parent ed2a79e commit a15cffc
Show file tree
Hide file tree
Showing 27 changed files with 3,823 additions and 194 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2021 wallee AG
Copyright 2022 wallee AG

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
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>ch.postfinance</groupId>
<artifactId>postfinancecheckout-java-sdk</artifactId>
<version>4.0.2</version>
<version>4.1.0</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 "ch.postfinance:postfinancecheckout-java-sdk:4.0.2"
compile "ch.postfinance:postfinancecheckout-java-sdk:4.1.0"
```

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

Then manually install the following JARs:

* `target/postfinancecheckout-java-sdk-4.0.2.jar`
* `target/postfinancecheckout-java-sdk-4.1.0.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 = 'ch.postfinance'
version = '4.0.2'
version = '4.1.0'

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 := "ch.postfinance",
name := "postfinancecheckout-java-sdk",
version := "4.0.2",
version := "4.1.0",
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>4.0.2</version>
<version>4.1.0</version>
<url>https://www.postfinance.ch/checkout</url>
<description>The SDK for simplifying the integration with PostFinance Checkout API.</description>
<scm>
Expand Down
16 changes: 16 additions & 0 deletions src/main/java/ch/postfinance/sdk/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,14 @@ public InternalTransferBankTransactionService getInternalTransferBankTransaction
return this.internalTransferBankTransactionService;
}

private InvoiceReconciliationRecordService invoiceReconciliationRecordService;
public InvoiceReconciliationRecordService getInvoiceReconciliationRecordService() {
if (this.invoiceReconciliationRecordService == null) {
this.invoiceReconciliationRecordService = new InvoiceReconciliationRecordService(this);
}
return this.invoiceReconciliationRecordService;
}

private LabelDescriptionGroupService labelDescriptionGroupService;
public LabelDescriptionGroupService getLabelDescriptionGroupService() {
if (this.labelDescriptionGroupService == null) {
Expand Down Expand Up @@ -589,6 +597,14 @@ public TransactionLightboxService getTransactionLightboxService() {
return this.transactionLightboxService;
}

private TransactionLineItemVersionService transactionLineItemVersionService;
public TransactionLineItemVersionService getTransactionLineItemVersionService() {
if (this.transactionLineItemVersionService == null) {
this.transactionLineItemVersionService = new TransactionLineItemVersionService(this);
}
return this.transactionLineItemVersionService;
}

private TransactionMobileSdkService transactionMobileSdkService;
public TransactionMobileSdkService getTransactionMobileSdkService() {
if (this.transactionMobileSdkService == null) {
Expand Down
Loading

0 comments on commit a15cffc

Please sign in to comment.