Skip to content

Commit

Permalink
Release 8.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wallee-deployment-user committed Nov 4, 2024
1 parent 378cb44 commit f1eb870
Show file tree
Hide file tree
Showing 146 changed files with 1,768 additions and 3,409 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.wallee</groupId>
<artifactId>wallee-java-sdk</artifactId>
<version>8.0.0</version>
<version>8.1.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -31,7 +31,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:8.0.0"
compile "com.wallee:wallee-java-sdk:8.1.1"
```

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

Then manually install the following JARs:

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

buildscript {
repositories {
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>8.0.0</version>
<version>8.1.1</version>
<url>https://www.wallee.com</url>
<description>The SDK for simplifying the integration with wallee API.</description>
<scm>
Expand Down
8 changes: 0 additions & 8 deletions src/main/java/com/wallee/sdk/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,14 +212,6 @@ public AccountService getAccountService() {
return this.accountService;
}

private AnalyticsQueryService analyticsQueryService;
public AnalyticsQueryService getAnalyticsQueryService() {
if (this.analyticsQueryService == null) {
this.analyticsQueryService = new AnalyticsQueryService(this);
}
return this.analyticsQueryService;
}

private ApplicationUserService applicationUserService;
public ApplicationUserService getApplicationUserService() {
if (this.applicationUserService == null) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/wallee/sdk/DefaultHeaders.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void intercept(HttpRequest request) throws IOException {

private HttpHeaders getDefaultHeaders() {
HttpHeaders headers = new HttpHeaders();
headers.put("x-meta-sdk-version", "8.0.0");
headers.put("x-meta-sdk-version", "8.1.1");
headers.put("x-meta-sdk-language", "java");
headers.put("x-meta-sdk-provider", "wallee");
headers.put("x-meta-sdk-language-version", System.getProperty("java.version"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ public AbstractDebtCollectionCaseUpdate billingAddress(AddressCreate billingAddr
}

/**
* The billing address of the case identifies the debtor.
* The billing address that identifies the debtor.
* @return billingAddress
**/
@ApiModelProperty(value = "The billing address of the case identifies the debtor.")
@ApiModelProperty(value = "The billing address that identifies the debtor.")
public AddressCreate getBillingAddress() {
return billingAddress;
}
Expand All @@ -99,10 +99,10 @@ public AbstractDebtCollectionCaseUpdate contractDate(OffsetDateTime contractDate
}

/**
* The contract date is the date on which the contract with the debtor was signed on.
* The date and time when the contract with the debtor was signed.
* @return contractDate
**/
@ApiModelProperty(value = "The contract date is the date on which the contract with the debtor was signed on.")
@ApiModelProperty(value = "The date and time when the contract with the debtor was signed.")
public OffsetDateTime getContractDate() {
return contractDate;
}
Expand All @@ -118,10 +118,10 @@ public AbstractDebtCollectionCaseUpdate currency(String currency) {
}

/**
* The currency defines the billing currency of the debt collection case.
* The three-letter code (ISO 4217 format) of the case&#39;s currency.
* @return currency
**/
@ApiModelProperty(value = "The currency defines the billing currency of the debt collection case.")
@ApiModelProperty(value = "The three-letter code (ISO 4217 format) of the case's currency.")
public String getCurrency() {
return currency;
}
Expand All @@ -137,10 +137,10 @@ public AbstractDebtCollectionCaseUpdate dueDate(OffsetDateTime dueDate) {
}

/**
* The due date indicates the date on which the amount receivable was due. This date has to be always in the past.
* The date and time when the claim was due.
* @return dueDate
**/
@ApiModelProperty(value = "The due date indicates the date on which the amount receivable was due. This date has to be always in the past.")
@ApiModelProperty(value = "The date and time when the claim was due.")
public OffsetDateTime getDueDate() {
return dueDate;
}
Expand All @@ -156,10 +156,10 @@ public AbstractDebtCollectionCaseUpdate environment(DebtCollectionEnvironment en
}

/**
* The environment in which this case will be processed. There must be a debt collector configuration present which supports the chosen environment.
* The environment in which the case is processed.
* @return environment
**/
@ApiModelProperty(value = "The environment in which this case will be processed. There must be a debt collector configuration present which supports the chosen environment.")
@ApiModelProperty(value = "The environment in which the case is processed.")
public DebtCollectionEnvironment getEnvironment() {
return environment;
}
Expand All @@ -175,10 +175,10 @@ public AbstractDebtCollectionCaseUpdate language(String language) {
}

/**
* The language indicates the language to be used in the communication with the debtor.
* The language that is linked to the object.
* @return language
**/
@ApiModelProperty(value = "The language indicates the language to be used in the communication with the debtor.")
@ApiModelProperty(value = "The language that is linked to the object.")
public String getLanguage() {
return language;
}
Expand All @@ -202,10 +202,10 @@ public AbstractDebtCollectionCaseUpdate addLineItemsItem(LineItemCreate lineItem
}

/**
* The line items of the debt collection case will be shown on documents sent to the debtor and the total of them makes up total amount to collect.
* The line items that are subject of this debt collection case.
* @return lineItems
**/
@ApiModelProperty(value = "The line items of the debt collection case will be shown on documents sent to the debtor and the total of them makes up total amount to collect.")
@ApiModelProperty(value = "The line items that are subject of this debt collection case.")
public List<LineItemCreate> getLineItems() {
return lineItems;
}
Expand All @@ -221,10 +221,10 @@ public AbstractDebtCollectionCaseUpdate spaceViewId(Long spaceViewId) {
}

/**
*
* The ID of the space view this object is linked to.
* @return spaceViewId
**/
@ApiModelProperty(value = "")
@ApiModelProperty(value = "The ID of the space view this object is linked to.")
public Long getSpaceViewId() {
return spaceViewId;
}
Expand Down
32 changes: 16 additions & 16 deletions src/main/java/com/wallee/sdk/model/AbstractSubscriberUpdate.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public AbstractSubscriberUpdate addAdditionalAllowedPaymentMethodConfigurationsI
}

/**
* Those payment methods which are allowed additionally will be available even when the product does not allow those methods.
* Allow the subscriber to use these payment methods even if subscription products do not accept them.
* @return additionalAllowedPaymentMethodConfigurations
**/
@ApiModelProperty(value = "Those payment methods which are allowed additionally will be available even when the product does not allow those methods.")
@ApiModelProperty(value = "Allow the subscriber to use these payment methods even if subscription products do not accept them.")
public List<Long> getAdditionalAllowedPaymentMethodConfigurations() {
return additionalAllowedPaymentMethodConfigurations;
}
Expand All @@ -110,10 +110,10 @@ public AbstractSubscriberUpdate billingAddress(AddressCreate billingAddress) {
}

/**
*
* The address associated with the subscriber for invoicing and transaction processing purposes.
* @return billingAddress
**/
@ApiModelProperty(value = "")
@ApiModelProperty(value = "The address associated with the subscriber for invoicing and transaction processing purposes.")
public AddressCreate getBillingAddress() {
return billingAddress;
}
Expand All @@ -129,10 +129,10 @@ public AbstractSubscriberUpdate description(String description) {
}

/**
* The subscriber description can be used to add a description to the subscriber. This is used in the back office to identify the subscriber.
* The description used to identify the subscriber.
* @return description
**/
@ApiModelProperty(value = "The subscriber description can be used to add a description to the subscriber. This is used in the back office to identify the subscriber.")
@ApiModelProperty(value = "The description used to identify the subscriber.")
public String getDescription() {
return description;
}
Expand All @@ -156,10 +156,10 @@ public AbstractSubscriberUpdate addDisallowedPaymentMethodConfigurationsItem(Lon
}

/**
* Those payment methods which are disallowed will not be available to the subscriber even if the product allows those methods.
* Prevent the subscriber from using these payment methods even if subscription products do accept them.
* @return disallowedPaymentMethodConfigurations
**/
@ApiModelProperty(value = "Those payment methods which are disallowed will not be available to the subscriber even if the product allows those methods.")
@ApiModelProperty(value = "Prevent the subscriber from using these payment methods even if subscription products do accept them.")
public List<Long> getDisallowedPaymentMethodConfigurations() {
return disallowedPaymentMethodConfigurations;
}
Expand All @@ -175,10 +175,10 @@ public AbstractSubscriberUpdate emailAddress(String emailAddress) {
}

/**
* The email address is used to communicate with the subscriber. There can be only one subscriber per space with the same email address.
* The email address that is used to communicate with the subscriber. There can be only one subscriber per space with the same email address.
* @return emailAddress
**/
@ApiModelProperty(value = "The email address is used to communicate with the subscriber. There can be only one subscriber per space with the same email address.")
@ApiModelProperty(value = "The email address that is used to communicate with the subscriber. There can be only one subscriber per space with the same email address.")
public String getEmailAddress() {
return emailAddress;
}
Expand All @@ -194,10 +194,10 @@ public AbstractSubscriberUpdate language(String language) {
}

/**
* The subscriber language determines the language which is used to communicate with the subscriber in emails and documents (e.g. invoices).
* The language that is used when communicating with the subscriber via emails and documents.
* @return language
**/
@ApiModelProperty(value = "The subscriber language determines the language which is used to communicate with the subscriber in emails and documents (e.g. invoices).")
@ApiModelProperty(value = "The language that is used when communicating with the subscriber via emails and documents.")
public String getLanguage() {
return language;
}
Expand Down Expand Up @@ -240,10 +240,10 @@ public AbstractSubscriberUpdate reference(String reference) {
}

/**
* The subscriber reference identifies the subscriber in administrative interfaces (e.g. customer id).
* The merchant&#39;s reference used to identify the subscriber.
* @return reference
**/
@ApiModelProperty(value = "The subscriber reference identifies the subscriber in administrative interfaces (e.g. customer id).")
@ApiModelProperty(value = "The merchant's reference used to identify the subscriber.")
public String getReference() {
return reference;
}
Expand All @@ -259,10 +259,10 @@ public AbstractSubscriberUpdate shippingAddress(AddressCreate shippingAddress) {
}

/**
*
* The address to where orders will be shipped.
* @return shippingAddress
**/
@ApiModelProperty(value = "")
@ApiModelProperty(value = "The address to where orders will be shipped.")
public AddressCreate getShippingAddress() {
return shippingAddress;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ public AbstractSubscriptionAffiliateUpdate name(String name) {
}

/**
*
* The name used to identify the affiliate.
* @return name
**/
@ApiModelProperty(value = "")
@ApiModelProperty(value = "The name used to identify the affiliate.")
public String getName() {
return name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ public AbstractSubscriptionMetricUpdate putDescriptionItem(String key, String de
}

/**
*
* The localized description of the metric that is displayed to the customer.
* @return description
**/
@ApiModelProperty(value = "")
@ApiModelProperty(value = "The localized description of the metric that is displayed to the customer.")
public Map<String, String> getDescription() {
return description;
}
Expand All @@ -88,10 +88,10 @@ public AbstractSubscriptionMetricUpdate putNameItem(String key, String nameItem)
}

/**
*
* The localized name of the metric that is displayed to the customer.
* @return name
**/
@ApiModelProperty(value = "")
@ApiModelProperty(value = "The localized name of the metric that is displayed to the customer.")
public Map<String, String> getName() {
return name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ public AbstractSubscriptionProductActive addAllowedPaymentMethodConfigurationsIt
}

/**
* The allowed payment method configurations control which payment methods can be used with this product. When none is selected all methods will be allowed.
* The payment methods that can be used to subscribe to this product. If none are selected, no restriction is applied.
* @return allowedPaymentMethodConfigurations
**/
@ApiModelProperty(value = "The allowed payment method configurations control which payment methods can be used with this product. When none is selected all methods will be allowed.")
@ApiModelProperty(value = "The payment methods that can be used to subscribe to this product. If none are selected, no restriction is applied.")
public List<Long> getAllowedPaymentMethodConfigurations() {
return allowedPaymentMethodConfigurations;
}
Expand All @@ -96,10 +96,10 @@ public AbstractSubscriptionProductActive failedPaymentSuspensionPeriod(String fa
}

/**
* When a payment fails, the subscription to which the payment belongs to will be suspended. When the suspension is not removed within the specified period the subscription will be terminated. A payment is considered as failed when the subscriber issues a refund or when a subscription charge fails.
* The period after which a subscription that has been suspended due to a failed payment is terminated.
* @return failedPaymentSuspensionPeriod
**/
@ApiModelProperty(value = "When a payment fails, the subscription to which the payment belongs to will be suspended. When the suspension is not removed within the specified period the subscription will be terminated. A payment is considered as failed when the subscriber issues a refund or when a subscription charge fails.")
@ApiModelProperty(value = "The period after which a subscription that has been suspended due to a failed payment is terminated.")
public String getFailedPaymentSuspensionPeriod() {
return failedPaymentSuspensionPeriod;
}
Expand All @@ -115,10 +115,10 @@ public AbstractSubscriptionProductActive name(String name) {
}

/**
* The product name is used internally to identify the configuration in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive.
* The name used to identify the product.
* @return name
**/
@ApiModelProperty(value = "The product name is used internally to identify the configuration in administrative interfaces. For example it is used within search fields and hence it should be distinct and descriptive.")
@ApiModelProperty(value = "The name used to identify the product.")
public String getName() {
return name;
}
Expand All @@ -134,10 +134,10 @@ public AbstractSubscriptionProductActive productLocked(Boolean productLocked) {
}

/**
* Marks the product as locked. Meaning that customer can not change away from this product or change to this product later on.
* Whether subscriptions can be switched to or from this product, or whether they are locked in.
* @return productLocked
**/
@ApiModelProperty(value = "Marks the product as locked. Meaning that customer can not change away from this product or change to this product later on.")
@ApiModelProperty(value = "Whether subscriptions can be switched to or from this product, or whether they are locked in.")
public Boolean isProductLocked() {
return productLocked;
}
Expand All @@ -153,10 +153,10 @@ public AbstractSubscriptionProductActive sortOrder(Integer sortOrder) {
}

/**
* The sort order controls in which order the product is listed. The sort order is used to order the products in ascending order.
* When listing products, they can be sorted by this number.
* @return sortOrder
**/
@ApiModelProperty(value = "The sort order controls in which order the product is listed. The sort order is used to order the products in ascending order.")
@ApiModelProperty(value = "When listing products, they can be sorted by this number.")
public Integer getSortOrder() {
return sortOrder;
}
Expand Down
Loading

0 comments on commit f1eb870

Please sign in to comment.