Skip to content

Commit

Permalink
Release 2.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Hunziker committed Aug 11, 2020
1 parent ad87e1d commit c8e78d2
Show file tree
Hide file tree
Showing 22 changed files with 2,075 additions and 249 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.wallee</groupId>
<artifactId>wallee-java-sdk</artifactId>
<version>2.2.5</version>
<version>2.2.6</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.wallee:wallee-java-sdk:2.2.5"
compile "com.wallee:wallee-java-sdk:2.2.6"
```

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

Then manually install the following JARs:

* `target/wallee-java-sdk-2.2.5.jar`
* `target/wallee-java-sdk-2.2.6.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.wallee'
version = '2.2.5'
version = '2.2.6'

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.wallee",
name := "wallee-java-sdk",
version := "2.2.5",
version := "2.2.6",
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>wallee-java-sdk</artifactId>
<packaging>jar</packaging>
<name>wallee-java-sdk</name>
<version>2.2.5</version>
<version>2.2.6</version>
<url>https://www.wallee.com</url>
<description>The SDK for simplifying the integration with wallee API.</description>
<scm>
Expand Down
30 changes: 28 additions & 2 deletions src/main/java/com/wallee/sdk/model/AbstractAccountUpdate.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.time.OffsetDateTime;
import java.util.*;
import java.time.OffsetDateTime;

Expand All @@ -35,6 +36,10 @@

public class AbstractAccountUpdate {

@JsonProperty("lastModifiedDate")
protected OffsetDateTime lastModifiedDate = null;


@JsonProperty("name")
protected String name = null;

Expand All @@ -44,6 +49,25 @@ public class AbstractAccountUpdate {



public AbstractAccountUpdate lastModifiedDate(OffsetDateTime lastModifiedDate) {
this.lastModifiedDate = lastModifiedDate;
return this;
}

/**
*
* @return lastModifiedDate
**/
@ApiModelProperty(value = "")
public OffsetDateTime getLastModifiedDate() {
return lastModifiedDate;
}

public void setLastModifiedDate(OffsetDateTime lastModifiedDate) {
this.lastModifiedDate = lastModifiedDate;
}


public AbstractAccountUpdate name(String name) {
this.name = name;
return this;
Expand Down Expand Up @@ -92,13 +116,14 @@ public boolean equals(java.lang.Object o) {
return false;
}
AbstractAccountUpdate abstractAccountUpdate = (AbstractAccountUpdate) o;
return Objects.equals(this.name, abstractAccountUpdate.name) &&
return Objects.equals(this.lastModifiedDate, abstractAccountUpdate.lastModifiedDate) &&
Objects.equals(this.name, abstractAccountUpdate.name) &&
Objects.equals(this.subaccountLimit, abstractAccountUpdate.subaccountLimit);
}

@Override
public int hashCode() {
return Objects.hash(name, subaccountLimit);
return Objects.hash(lastModifiedDate, name, subaccountLimit);
}


Expand All @@ -107,6 +132,7 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AbstractAccountUpdate {\n");

sb.append(" lastModifiedDate: ").append(toIndentedString(lastModifiedDate)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" subaccountLimit: ").append(toIndentedString(subaccountLimit)).append("\n");
sb.append("}");
Expand Down
30 changes: 28 additions & 2 deletions src/main/java/com/wallee/sdk/model/AbstractSpaceUpdate.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.wallee.sdk.model.SpaceAddressCreate;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.List;
import java.util.*;
Expand All @@ -39,6 +40,10 @@

public class AbstractSpaceUpdate {

@JsonProperty("lastModifiedDate")
protected OffsetDateTime lastModifiedDate = null;


@JsonProperty("name")
protected String name = null;

Expand Down Expand Up @@ -68,6 +73,25 @@ public class AbstractSpaceUpdate {



public AbstractSpaceUpdate lastModifiedDate(OffsetDateTime lastModifiedDate) {
this.lastModifiedDate = lastModifiedDate;
return this;
}

/**
*
* @return lastModifiedDate
**/
@ApiModelProperty(value = "")
public OffsetDateTime getLastModifiedDate() {
return lastModifiedDate;
}

public void setLastModifiedDate(OffsetDateTime lastModifiedDate) {
this.lastModifiedDate = lastModifiedDate;
}


public AbstractSpaceUpdate name(String name) {
this.name = name;
return this;
Expand Down Expand Up @@ -219,7 +243,8 @@ public boolean equals(java.lang.Object o) {
return false;
}
AbstractSpaceUpdate abstractSpaceUpdate = (AbstractSpaceUpdate) o;
return Objects.equals(this.name, abstractSpaceUpdate.name) &&
return Objects.equals(this.lastModifiedDate, abstractSpaceUpdate.lastModifiedDate) &&
Objects.equals(this.name, abstractSpaceUpdate.name) &&
Objects.equals(this.postalAddress, abstractSpaceUpdate.postalAddress) &&
Objects.equals(this.primaryCurrency, abstractSpaceUpdate.primaryCurrency) &&
Objects.equals(this.requestLimit, abstractSpaceUpdate.requestLimit) &&
Expand All @@ -230,7 +255,7 @@ public boolean equals(java.lang.Object o) {

@Override
public int hashCode() {
return Objects.hash(name, postalAddress, primaryCurrency, requestLimit, state, technicalContactAddresses, timeZone);
return Objects.hash(lastModifiedDate, name, postalAddress, primaryCurrency, requestLimit, state, technicalContactAddresses, timeZone);
}


Expand All @@ -239,6 +264,7 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AbstractSpaceUpdate {\n");

sb.append(" lastModifiedDate: ").append(toIndentedString(lastModifiedDate)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" postalAddress: ").append(toIndentedString(postalAddress)).append("\n");
sb.append(" primaryCurrency: ").append(toIndentedString(primaryCurrency)).append("\n");
Expand Down
18 changes: 17 additions & 1 deletion src/main/java/com/wallee/sdk/model/Account.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ public class Account {
protected Long id = null;


@JsonProperty("lastModifiedDate")
protected OffsetDateTime lastModifiedDate = null;


@JsonProperty("name")
protected String name = null;

Expand Down Expand Up @@ -147,6 +151,16 @@ public Long getId() {
}


/**
*
* @return lastModifiedDate
**/
@ApiModelProperty(value = "")
public OffsetDateTime getLastModifiedDate() {
return lastModifiedDate;
}


/**
* The name of the account identifies the account within the administrative interface.
* @return name
Expand Down Expand Up @@ -252,6 +266,7 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.deletedBy, account.deletedBy) &&
Objects.equals(this.deletedOn, account.deletedOn) &&
Objects.equals(this.id, account.id) &&
Objects.equals(this.lastModifiedDate, account.lastModifiedDate) &&
Objects.equals(this.name, account.name) &&
Objects.equals(this.parentAccount, account.parentAccount) &&
Objects.equals(this.plannedPurgeDate, account.plannedPurgeDate) &&
Expand All @@ -265,7 +280,7 @@ public boolean equals(java.lang.Object o) {

@Override
public int hashCode() {
return Objects.hash(active, activeOrRestrictedActive, deletedBy, deletedOn, id, name, parentAccount, plannedPurgeDate, restrictedActive, scope, state, subaccountLimit, type, version);
return Objects.hash(active, activeOrRestrictedActive, deletedBy, deletedOn, id, lastModifiedDate, name, parentAccount, plannedPurgeDate, restrictedActive, scope, state, subaccountLimit, type, version);
}


Expand All @@ -279,6 +294,7 @@ public String toString() {
sb.append(" deletedBy: ").append(toIndentedString(deletedBy)).append("\n");
sb.append(" deletedOn: ").append(toIndentedString(deletedOn)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" lastModifiedDate: ").append(toIndentedString(lastModifiedDate)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" parentAccount: ").append(toIndentedString(parentAccount)).append("\n");
sb.append(" plannedPurgeDate: ").append(toIndentedString(plannedPurgeDate)).append("\n");
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/com/wallee/sdk/model/AccountCreate.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ public boolean equals(java.lang.Object o) {
return false;
}
AccountCreate accountCreate = (AccountCreate) o;
return Objects.equals(this.name, accountCreate.name) &&
return Objects.equals(this.lastModifiedDate, accountCreate.lastModifiedDate) &&
Objects.equals(this.name, accountCreate.name) &&
Objects.equals(this.subaccountLimit, accountCreate.subaccountLimit) &&
Objects.equals(this.parentAccount, accountCreate.parentAccount) &&
Objects.equals(this.scope, accountCreate.scope) &&
Expand All @@ -103,7 +104,7 @@ public boolean equals(java.lang.Object o) {

@Override
public int hashCode() {
return Objects.hash(name, subaccountLimit, parentAccount, scope, super.hashCode());
return Objects.hash(lastModifiedDate, name, subaccountLimit, parentAccount, scope, super.hashCode());
}


Expand All @@ -112,6 +113,7 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccountCreate {\n");
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
sb.append(" lastModifiedDate: ").append(toIndentedString(lastModifiedDate)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" subaccountLimit: ").append(toIndentedString(subaccountLimit)).append("\n");
sb.append(" parentAccount: ").append(toIndentedString(parentAccount)).append("\n");
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/com/wallee/sdk/model/AccountUpdate.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ public boolean equals(java.lang.Object o) {
return false;
}
AccountUpdate accountUpdate = (AccountUpdate) o;
return Objects.equals(this.name, accountUpdate.name) &&
return Objects.equals(this.lastModifiedDate, accountUpdate.lastModifiedDate) &&
Objects.equals(this.name, accountUpdate.name) &&
Objects.equals(this.subaccountLimit, accountUpdate.subaccountLimit) &&
Objects.equals(this.id, accountUpdate.id) &&
Objects.equals(this.version, accountUpdate.version) &&
Expand All @@ -103,7 +104,7 @@ public boolean equals(java.lang.Object o) {

@Override
public int hashCode() {
return Objects.hash(name, subaccountLimit, id, version, super.hashCode());
return Objects.hash(lastModifiedDate, name, subaccountLimit, id, version, super.hashCode());
}


Expand All @@ -112,6 +113,7 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccountUpdate {\n");
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
sb.append(" lastModifiedDate: ").append(toIndentedString(lastModifiedDate)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" subaccountLimit: ").append(toIndentedString(subaccountLimit)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
Expand Down
Loading

0 comments on commit c8e78d2

Please sign in to comment.