Skip to content

Commit ccdc504

Browse files
committed
Build for OpenAPI spec versions 2.2.1, 2.2.2, 2.2.3 & 2.2.4
1 parent 89de7c1 commit ccdc504

File tree

336 files changed

+621
-358
lines changed

Some content is hidden

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

336 files changed

+621
-358
lines changed

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>xero-java</artifactId>
66
<packaging>jar</packaging>
77
<name>xero-java</name>
8-
<version>4.1.0</version>
8+
<version>4.1.1</version>
99
<url>https://github.com/XeroAPI/Xero-Java</url>
1010
<description>This is the official Java SDK for Xero API</description>
1111
<licenses>
@@ -298,7 +298,7 @@
298298
<google-api-client-version>1.23.0</google-api-client-version>
299299
<jersey-common-version>2.25.1</jersey-common-version>
300300
<jackson-version>2.9.10</jackson-version>
301-
<jackson-databind-version>2.9.10.4</jackson-databind-version>
301+
<jackson-databind-version>2.9.10.5</jackson-databind-version>
302302
<jackson-threetenbp-version>2.6.4</jackson-threetenbp-version>
303303
<junit-version>4.12</junit-version>
304304
<org-apache-httpcomponents>4.5.3</org-apache-httpcomponents>

src/main/java/com/xero/api/client/AccountingApi.java

+16-4
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public class AccountingApi {
9393
private ApiClient apiClient;
9494
private static AccountingApi instance = null;
9595
private String userAgent = "Default";
96-
private String version = "4.1.0";
96+
private String version = "4.1.1";
9797
final static Logger logger = LoggerFactory.getLogger(AccountingApi.class);
9898

9999
public AccountingApi() {
@@ -1398,14 +1398,15 @@ public HttpResponse createContactsForHttpResponse(String accessToken, String xe
13981398
* @param xeroTenantId Xero identifier for Tenant
13991399
* @param creditNoteID Unique identifier for a Credit Note
14001400
* @param allocations Allocations with array of Allocation object in body of request.
1401+
* @param summarizeErrors If false return 200 OK and mix of successfully created obejcts and any with validation errors
14011402
* @param accessToken Authorization token for user set in header of each request
14021403
* @return Allocations
14031404
* @throws IOException if an error occurs while attempting to invoke the API
14041405
**/
1405-
public Allocations createCreditNoteAllocation(String accessToken, String xeroTenantId, UUID creditNoteID, Allocations allocations) throws IOException {
1406+
public Allocations createCreditNoteAllocation(String accessToken, String xeroTenantId, UUID creditNoteID, Allocations allocations, Boolean summarizeErrors) throws IOException {
14061407
try {
14071408
TypeReference<Allocations> typeRef = new TypeReference<Allocations>() {};
1408-
HttpResponse response = createCreditNoteAllocationForHttpResponse(accessToken, xeroTenantId, creditNoteID, allocations);
1409+
HttpResponse response = createCreditNoteAllocationForHttpResponse(accessToken, xeroTenantId, creditNoteID, allocations, summarizeErrors);
14091410
return apiClient.getObjectMapper().readValue(response.getContent(), typeRef);
14101411
} catch (HttpResponseException e) {
14111412
if (logger.isDebugEnabled()) {
@@ -1429,7 +1430,7 @@ public Allocations createCreditNoteAllocation(String accessToken, String xeroTe
14291430
return null;
14301431
}
14311432

1432-
public HttpResponse createCreditNoteAllocationForHttpResponse(String accessToken, String xeroTenantId, UUID creditNoteID, Allocations allocations) throws IOException {
1433+
public HttpResponse createCreditNoteAllocationForHttpResponse(String accessToken, String xeroTenantId, UUID creditNoteID, Allocations allocations, Boolean summarizeErrors) throws IOException {
14331434
// verify the required parameter 'xeroTenantId' is set
14341435
if (xeroTenantId == null) {
14351436
throw new IllegalArgumentException("Missing the required parameter 'xeroTenantId' when calling createCreditNoteAllocation");
@@ -1452,6 +1453,17 @@ public HttpResponse createCreditNoteAllocationForHttpResponse(String accessToken
14521453
uriVariables.put("CreditNoteID", creditNoteID);
14531454

14541455
UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/CreditNotes/{CreditNoteID}/Allocations");
1456+
if (summarizeErrors != null) {
1457+
String key = "summarizeErrors";
1458+
Object value = summarizeErrors;
1459+
if (value instanceof Collection) {
1460+
uriBuilder = uriBuilder.queryParam(key, ((Collection) value).toArray());
1461+
} else if (value instanceof Object[]) {
1462+
uriBuilder = uriBuilder.queryParam(key, (Object[]) value);
1463+
} else {
1464+
uriBuilder = uriBuilder.queryParam(key, value);
1465+
}
1466+
}
14551467
String url = uriBuilder.buildFromMap(uriVariables).toString();
14561468
GenericUrl genericUrl = new GenericUrl(url);
14571469
if (logger.isDebugEnabled()) {

src/main/java/com/xero/api/client/AssetApi.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class AssetApi {
4747
private ApiClient apiClient;
4848
private static AssetApi instance = null;
4949
private String userAgent = "Default";
50-
private String version = "4.1.0";
50+
private String version = "4.1.1";
5151
final static Logger logger = LoggerFactory.getLogger(AssetApi.class);
5252

5353
public AssetApi() {

src/main/java/com/xero/api/client/BankFeedsApi.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class BankFeedsApi {
4747
private ApiClient apiClient;
4848
private static BankFeedsApi instance = null;
4949
private String userAgent = "Default";
50-
private String version = "4.1.0";
50+
private String version = "4.1.1";
5151
final static Logger logger = LoggerFactory.getLogger(BankFeedsApi.class);
5252

5353
public BankFeedsApi() {

src/main/java/com/xero/api/client/IdentityApi.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class IdentityApi {
4343
private ApiClient apiClient;
4444
private static IdentityApi instance = null;
4545
private String userAgent = "Default";
46-
private String version = "4.1.0";
46+
private String version = "4.1.1";
4747
final static Logger logger = LoggerFactory.getLogger(IdentityApi.class);
4848

4949
public IdentityApi() {

src/main/java/com/xero/api/client/PayrollAuApi.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class PayrollAuApi {
6363
private ApiClient apiClient;
6464
private static PayrollAuApi instance = null;
6565
private String userAgent = "Default";
66-
private String version = "4.1.0";
66+
private String version = "4.1.1";
6767
final static Logger logger = LoggerFactory.getLogger(PayrollAuApi.class);
6868

6969
public PayrollAuApi() {

src/main/java/com/xero/api/client/PayrollUkApi.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public class PayrollUkApi {
105105
private ApiClient apiClient;
106106
private static PayrollUkApi instance = null;
107107
private String userAgent = "Default";
108-
private String version = "4.1.0";
108+
private String version = "4.1.1";
109109
final static Logger logger = LoggerFactory.getLogger(PayrollUkApi.class);
110110

111111
public PayrollUkApi() {

src/main/java/com/xero/api/client/ProjectApi.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class ProjectApi {
5454
private ApiClient apiClient;
5555
private static ProjectApi instance = null;
5656
private String userAgent = "Default";
57-
private String version = "4.1.0";
57+
private String version = "4.1.1";
5858
final static Logger logger = LoggerFactory.getLogger(ProjectApi.class);
5959

6060
public ProjectApi() {

src/main/java/com/xero/models/accounting/Account.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Accounting API
33
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
44
*
5-
* The version of the OpenAPI document: 2.2.0
5+
* The version of the OpenAPI document: 2.2.4
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/xero/models/accounting/AccountType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Accounting API
33
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
44
*
5-
* The version of the OpenAPI document: 2.2.0
5+
* The version of the OpenAPI document: 2.2.4
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/xero/models/accounting/Accounts.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Accounting API
33
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
44
*
5-
* The version of the OpenAPI document: 2.2.0
5+
* The version of the OpenAPI document: 2.2.4
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/xero/models/accounting/AccountsPayable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Accounting API
33
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
44
*
5-
* The version of the OpenAPI document: 2.2.0
5+
* The version of the OpenAPI document: 2.2.4
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/xero/models/accounting/AccountsReceivable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Accounting API
33
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
44
*
5-
* The version of the OpenAPI document: 2.2.0
5+
* The version of the OpenAPI document: 2.2.4
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/xero/models/accounting/Address.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Accounting API
33
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
44
*
5-
* The version of the OpenAPI document: 2.2.0
5+
* The version of the OpenAPI document: 2.2.4
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/xero/models/accounting/Allocation.java

+132-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Accounting API
33
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
44
*
5-
* The version of the OpenAPI document: 2.2.0
5+
* The version of the OpenAPI document: 2.2.4
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,9 +19,15 @@
1919
import com.fasterxml.jackson.annotation.JsonProperty;
2020
import com.fasterxml.jackson.annotation.JsonCreator;
2121
import com.fasterxml.jackson.annotation.JsonValue;
22+
import com.xero.models.accounting.CreditNote;
2223
import com.xero.models.accounting.Invoice;
24+
import com.xero.models.accounting.Overpayment;
25+
import com.xero.models.accounting.Prepayment;
26+
import com.xero.models.accounting.ValidationError;
2327
import io.swagger.annotations.ApiModel;
2428
import io.swagger.annotations.ApiModelProperty;
29+
import java.util.ArrayList;
30+
import java.util.List;
2531
import java.io.IOException;
2632

2733
import org.threeten.bp.OffsetDateTime;
@@ -42,11 +48,26 @@ public class Allocation {
4248
@JsonProperty("Invoice")
4349
private Invoice invoice;
4450

51+
@JsonProperty("Overpayment")
52+
private Overpayment overpayment;
53+
54+
@JsonProperty("Prepayment")
55+
private Prepayment prepayment;
56+
57+
@JsonProperty("CreditNote")
58+
private CreditNote creditNote;
59+
4560
@JsonProperty("Amount")
4661
private Double amount;
4762

4863
@JsonProperty("Date")
4964
private String date;
65+
66+
@JsonProperty("StatusAttributeString")
67+
private String statusAttributeString;
68+
69+
@JsonProperty("ValidationErrors")
70+
private List<ValidationError> validationErrors = new ArrayList<ValidationError>();
5071
public Allocation invoice(Invoice invoice) {
5172
this.invoice = invoice;
5273
return this;
@@ -65,6 +86,60 @@ public void setInvoice(Invoice invoice) {
6586
this.invoice = invoice;
6687
}
6788

89+
public Allocation overpayment(Overpayment overpayment) {
90+
this.overpayment = overpayment;
91+
return this;
92+
}
93+
94+
/**
95+
* Get overpayment
96+
* @return overpayment
97+
**/
98+
@ApiModelProperty(value = "")
99+
public Overpayment getOverpayment() {
100+
return overpayment;
101+
}
102+
103+
public void setOverpayment(Overpayment overpayment) {
104+
this.overpayment = overpayment;
105+
}
106+
107+
public Allocation prepayment(Prepayment prepayment) {
108+
this.prepayment = prepayment;
109+
return this;
110+
}
111+
112+
/**
113+
* Get prepayment
114+
* @return prepayment
115+
**/
116+
@ApiModelProperty(value = "")
117+
public Prepayment getPrepayment() {
118+
return prepayment;
119+
}
120+
121+
public void setPrepayment(Prepayment prepayment) {
122+
this.prepayment = prepayment;
123+
}
124+
125+
public Allocation creditNote(CreditNote creditNote) {
126+
this.creditNote = creditNote;
127+
return this;
128+
}
129+
130+
/**
131+
* Get creditNote
132+
* @return creditNote
133+
**/
134+
@ApiModelProperty(value = "")
135+
public CreditNote getCreditNote() {
136+
return creditNote;
137+
}
138+
139+
public void setCreditNote(CreditNote creditNote) {
140+
this.creditNote = creditNote;
141+
}
142+
68143
public Allocation amount(Double amount) {
69144
this.amount = amount;
70145
return this;
@@ -119,6 +194,50 @@ public void setDate(LocalDate date) {
119194
this.date = "/Date(" + Long.toString(timeInMillis) + "+0000)/";
120195
}
121196

197+
public Allocation statusAttributeString(String statusAttributeString) {
198+
this.statusAttributeString = statusAttributeString;
199+
return this;
200+
}
201+
202+
/**
203+
* A string to indicate if a invoice status
204+
* @return statusAttributeString
205+
**/
206+
@ApiModelProperty(value = "A string to indicate if a invoice status")
207+
public String getStatusAttributeString() {
208+
return statusAttributeString;
209+
}
210+
211+
public void setStatusAttributeString(String statusAttributeString) {
212+
this.statusAttributeString = statusAttributeString;
213+
}
214+
215+
public Allocation validationErrors(List<ValidationError> validationErrors) {
216+
this.validationErrors = validationErrors;
217+
return this;
218+
}
219+
220+
public Allocation addValidationErrorsItem(ValidationError validationErrorsItem) {
221+
if (this.validationErrors == null) {
222+
this.validationErrors = new ArrayList<ValidationError>();
223+
}
224+
this.validationErrors.add(validationErrorsItem);
225+
return this;
226+
}
227+
228+
/**
229+
* Displays array of validation error messages from the API
230+
* @return validationErrors
231+
**/
232+
@ApiModelProperty(value = "Displays array of validation error messages from the API")
233+
public List<ValidationError> getValidationErrors() {
234+
return validationErrors;
235+
}
236+
237+
public void setValidationErrors(List<ValidationError> validationErrors) {
238+
this.validationErrors = validationErrors;
239+
}
240+
122241

123242
@Override
124243
public boolean equals(java.lang.Object o) {
@@ -130,13 +249,18 @@ public boolean equals(java.lang.Object o) {
130249
}
131250
Allocation allocation = (Allocation) o;
132251
return Objects.equals(this.invoice, allocation.invoice) &&
252+
Objects.equals(this.overpayment, allocation.overpayment) &&
253+
Objects.equals(this.prepayment, allocation.prepayment) &&
254+
Objects.equals(this.creditNote, allocation.creditNote) &&
133255
Objects.equals(this.amount, allocation.amount) &&
134-
Objects.equals(this.date, allocation.date);
256+
Objects.equals(this.date, allocation.date) &&
257+
Objects.equals(this.statusAttributeString, allocation.statusAttributeString) &&
258+
Objects.equals(this.validationErrors, allocation.validationErrors);
135259
}
136260

137261
@Override
138262
public int hashCode() {
139-
return Objects.hash(invoice, amount, date);
263+
return Objects.hash(invoice, overpayment, prepayment, creditNote, amount, date, statusAttributeString, validationErrors);
140264
}
141265

142266

@@ -145,8 +269,13 @@ public String toString() {
145269
StringBuilder sb = new StringBuilder();
146270
sb.append("class Allocation {\n");
147271
sb.append(" invoice: ").append(toIndentedString(invoice)).append("\n");
272+
sb.append(" overpayment: ").append(toIndentedString(overpayment)).append("\n");
273+
sb.append(" prepayment: ").append(toIndentedString(prepayment)).append("\n");
274+
sb.append(" creditNote: ").append(toIndentedString(creditNote)).append("\n");
148275
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
149276
sb.append(" date: ").append(toIndentedString(date)).append("\n");
277+
sb.append(" statusAttributeString: ").append(toIndentedString(statusAttributeString)).append("\n");
278+
sb.append(" validationErrors: ").append(toIndentedString(validationErrors)).append("\n");
150279
sb.append("}");
151280
return sb.toString();
152281
}

src/main/java/com/xero/models/accounting/Allocations.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Accounting API
33
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
44
*
5-
* The version of the OpenAPI document: 2.2.0
5+
* The version of the OpenAPI document: 2.2.4
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/com/xero/models/accounting/Attachment.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Accounting API
33
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
44
*
5-
* The version of the OpenAPI document: 2.2.0
5+
* The version of the OpenAPI document: 2.2.4
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)