diff --git a/.github/actions/notify-slack/action.yml b/.github/actions/notify-slack/action.yml new file mode 100644 index 00000000..add9673f --- /dev/null +++ b/.github/actions/notify-slack/action.yml @@ -0,0 +1,103 @@ +name: slack-alert-action +description: "Action to send slack payload to public-sdk-events channel" + +inputs: + heading_text: + required: true + description: "Heading of the slack payload" + alert_type: + required: true + description: "type of the slack alert" + job_status: + required: true + description: "status of the job" + XERO_SLACK_WEBHOOK_URL: + required: true + description: "webhook url for channel - public-sdk-events" + job_url: + required: true + description: "job run id link" + button_type: + required: true + description: "color for the check logs button" + package_version: + required: true + description: "released package version" + repo_link: + required: true + description: "link of the repo" + + +runs: + using: "composite" + + steps: + + - name: Send slack notification + id: slack + uses: slackapi/slack-github-action@v1.27.0 + env: + SLACK_WEBHOOK_URL: ${{inputs.XERO_SLACK_WEBHOOK_URL}} + SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK + with: + payload: | + { + "blocks": [ + { + "type": "rich_text", + "elements": [ + { + "type": "rich_text_section", + "elements": [ + { + "type": "text", + "text": "${{inputs.heading_text}} ", + "style": { + "bold": true + } + }, + { + "type": "emoji", + "name": "${{inputs.alert_type}}" + } + ] + } + ] + }, + { + "type": "divider" + }, + { + "type": "section", + "fields": [ + { + "type": "mrkdwn", + "text": "*Repository:* \n ${{inputs.repo_link}}" + }, + { + "type": "mrkdwn", + "text": "*Status:*\n ${{inputs.job_status}}" + }, + { + "type": "mrkdwn", + "text": "*Package Version:*\n ${{inputs.package_version}}" + } + ] + }, + { + "type": "actions", + "elements": [ + { + "type": "button", + "text": { + "type": "plain_text", + "text": "Check the logs", + "emoji": true + }, + "style": "${{inputs.button_type}}", + "url": "${{inputs.job_url}}" + } + ] + } + ] + } diff --git a/.github/workflows/build-lint-test.yml b/.github/workflows/build-lint-test.yml index ab8afd94..e455115a 100644 --- a/.github/workflows/build-lint-test.yml +++ b/.github/workflows/build-lint-test.yml @@ -27,8 +27,26 @@ jobs: env: GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY}} + - name: Set up Node environment + uses: actions/setup-node@v2 + with: + node-version: 20 + + - name: Install Prism + run: npm install -g @stoplight/prism-cli + + - name: Start PRISM Server + run: ./start-prism.sh & sleep 15 + working-directory: Xero-Java/src/test/java/com/xero/api/util + - name: Build and test post generation run: | export GPG_TTY=$(tty) - mvn clean verify -DskipTests=true -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} + mvn clean verify + env: + MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + working-directory: Xero-Java + + - name: Stop PRISM + run: pkill -f prism working-directory: Xero-Java diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 00000000..2f1cede9 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,104 @@ +name: Publish +on: + release: + types: [published] + +jobs: + publish: + runs-on: ubuntu-latest + + outputs: + release_number: ${{steps.get_latest_release_number.outputs.release_tag}} + permissions: + contents: write + pull-requests: write + + steps: + - name: Checkout Xero-Java repo + uses: actions/checkout@v4 + with: + repository: XeroAPI/Xero-Java + path: Xero-Java + + - name: Set up JDK environment + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '11' + cache: maven + server-id: ossrh + server-username: MAVEN_USERNAME + server-password: MAVEN_PASSWORD + gpg-passphrase: GPG_PASSPHRASE + + - name: Fetch Latest release number + id: get_latest_release_number + run: | + latest_version=$(gh release view --json tagName --jq '.tagName') + echo "Latest release version is - $latest_version" + echo "::set-output name=release_tag::$latest_version" + working-directory: Xero-Java + env: + GH_TOKEN: ${{secrets.GITHUB_TOKEN}} + + - name: Import GPG Key + run: | + echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import + env: + GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY}} + + - name: Publish to Maven + run: | + export GPG_TTY=$(tty) + mvn clean deploy -DskipTests=true + env: + MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.MAVEN_TOKEN }} + GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + working-directory: Xero-Java + + notify-slack-on-success: + runs-on: ubuntu-latest + needs: publish + if: success() + steps: + - name: Checkout Xero-Java repo + uses: actions/checkout@v4 + with: + repository: XeroAPI/Xero-Java + path: Xero-Java + + - name: Send slack notification on success + uses: ./Xero-Java/.github/actions/notify-slack + with: + heading_text: "Publish job has succeeded !" + alert_type: "thumbsup" + job_status: "Success" + XERO_SLACK_WEBHOOK_URL: ${{secrets.XERO_SLACK_WEBHOOK_URL}} + job_url: "https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}" + button_type: "primary" + package_version: ${{needs.publish.outputs.release_number}} + repo_link: ${{github.server_url}}/${{github.repository}} + + notify-slack-on-failure: + runs-on: ubuntu-latest + needs: publish + if: failure() + steps: + - name: Checkout Xero-Java repo + uses: actions/checkout@v4 + with: + repository: XeroAPI/Xero-Java + path: Xero-Java + + - name: Send slack notification on failure + uses: ./Xero-Java/.github/actions/notify-slack + with: + heading_text: "Publish job has failed !" + alert_type: "alert" + job_status: "Failed" + XERO_SLACK_WEBHOOK_URL: ${{secrets.XERO_SLACK_WEBHOOK_URL}} + job_url: "https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}" + button_type: "danger" + package_version: ${{needs.publish.outputs.release_number}} + repo_link: ${{github.server_url}}/${{github.repository}} diff --git a/README.md b/README.md index e2e83864..b3e15156 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ The **Xero-Java** SDK makes it easy for developers to access Xero's APIs in thei - [App Store Subscriptions](#app-store-subscriptions) - [API Clients](#api-clients) - [Usage Examples](#usage-examples) +- [Running Test(s) in Local](#running-tests-in-local) - [SDK conventions](#sdk-conventions) - [Participating in Xero’s developer community](#participating-in-xeros-developoer-community) @@ -677,7 +678,17 @@ try { System.out.println(e.getMessage()); } ``` +## Running Test(s) in Local +For Running Test cases PRISM Mock Server needs to be started in the local machine. +Steps to Run Test(s) +* Install PRISM from npm using the command: **npm install -g @stoplight/prism-cli** +* Verify Installation: **prism --version** +* Navigate to **Xero-Java--> src--> test--> util** folder in the terminal +* Execute the script **./start-prism.sh** +* This will start the PRISM Server in Local +* Run **mvn clean verify -DskipTests=false** to build the Java code along with Test Cases. +--- ## SDK conventions ### Working with dates diff --git a/docs/v4/accounting/index.html b/docs/v4/accounting/index.html index 9667a9f0..5f020aa0 100644 --- a/docs/v4/accounting/index.html +++ b/docs/v4/accounting/index.html @@ -7212,7 +7212,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Account" }, - "example" : "{ \"Code\":\"123456\", \"Name\":\"Foobar\", \"Type\":\"EXPENSE\", \"Description\":\"Hello World\" }" + "example" : { + "Code" : "123456", + "Name" : "Foobar", + "Type" : "EXPENSE", + "Description" : "Hello World" + } } }, "required" : true @@ -7263,14 +7268,9 @@

Usage and SDK Samples

UUID accountID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createAccountAttachmentByFileName(accessToken, xeroTenantId, accountID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.createAccountAttachmentByFileName(accessToken, xeroTenantId, accountID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createAccountAttachmentByFileName"); @@ -7408,7 +7408,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -7425,7 +7425,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -7477,14 +7477,9 @@

Usage and SDK Samples

UUID bankTransactionID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createBankTransactionAttachmentByFileName(accessToken, xeroTenantId, bankTransactionID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.createBankTransactionAttachmentByFileName(accessToken, xeroTenantId, bankTransactionID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createBankTransactionAttachmentByFileName"); @@ -7622,7 +7617,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -7639,7 +7634,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -7831,7 +7826,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -8007,7 +8006,23 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/BankTransactions" }, - "example" : "{ bankTransactions: [{ type: BankTransaction.TypeEnum.SPEND, contact: { contactID: \"00000000-0000-0000-0000-000000000000\" }, lineItems: [{ description: \"Foobar\", quantity: 1.0, unitAmount: 20.0, accountCode: \"000\" } ], bankAccount: { code: \"000\" }}]}" + "example" : { + "bankTransactions" : [ { + "type" : "BankTransaction.TypeEnum.SPEND", + "contact" : { + "contactID" : "00000000-0000-0000-0000-000000000000" + }, + "lineItems" : [ { + "description" : "Foobar", + "quantity" : 1.0, + "unitAmount" : 20.0, + "accountCode" : "000" + } ], + "bankAccount" : { + "code" : "000" + } + } ] + } } }, "required" : true @@ -8218,7 +8233,50 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/BankTransfers" }, - "example" : "{ \"BankTransfers\": [ { \"FromBankAccount\": { \"Code\": \"090\", \"Name\": \"My Savings\", \"AccountID\": \"00000000-0000-0000-0000-000000000000\", \"Type\": \"BANK\", \"BankAccountNumber\": \"123455\", \"Status\": \"ACTIVE\", \"BankAccountType\": \"BANK\", \"CurrencyCode\": \"USD\", \"TaxType\": \"NONE\", \"EnablePaymentsToAccount\": false, \"ShowInExpenseClaims\": false, \"Class\": \"ASSET\", \"ReportingCode\": \"ASS\", \"ReportingCodeName\": \"Assets\", \"HasAttachments\": false, \"UpdatedDateUTC\": \"2016-10-17T13:45:33.993-07:00\" }, \"ToBankAccount\": { \"Code\": \"088\", \"Name\": \"Business Wells Fargo\", \"AccountID\": \"00000000-0000-0000-0000-000000000000\", \"Type\": \"BANK\", \"BankAccountNumber\": \"123455\", \"Status\": \"ACTIVE\", \"BankAccountType\": \"BANK\", \"CurrencyCode\": \"USD\", \"TaxType\": \"NONE\", \"EnablePaymentsToAccount\": false, \"ShowInExpenseClaims\": false, \"Class\": \"ASSET\", \"ReportingCode\": \"ASS\", \"ReportingCodeName\": \"Assets\", \"HasAttachments\": false, \"UpdatedDateUTC\": \"2016-06-03T08:31:14.517-07:00\" }, \"Amount\": \"50.00\", \"FromIsReconciled\": true, \"ToIsReconciled\": true, \"Reference\": \"Sub 098801\" } ] }" + "example" : { + "BankTransfers" : [ { + "FromBankAccount" : { + "Code" : "090", + "Name" : "My Savings", + "AccountID" : "00000000-0000-0000-0000-000000000000", + "Type" : "BANK", + "BankAccountNumber" : "123455", + "Status" : "ACTIVE", + "BankAccountType" : "BANK", + "CurrencyCode" : "USD", + "TaxType" : "NONE", + "EnablePaymentsToAccount" : false, + "ShowInExpenseClaims" : false, + "Class" : "ASSET", + "ReportingCode" : "ASS", + "ReportingCodeName" : "Assets", + "HasAttachments" : false, + "UpdatedDateUTC" : "2016-10-17T13:45:33.993-07:00" + }, + "ToBankAccount" : { + "Code" : "088", + "Name" : "Business Wells Fargo", + "AccountID" : "00000000-0000-0000-0000-000000000000", + "Type" : "BANK", + "BankAccountNumber" : "123455", + "Status" : "ACTIVE", + "BankAccountType" : "BANK", + "CurrencyCode" : "USD", + "TaxType" : "NONE", + "EnablePaymentsToAccount" : false, + "ShowInExpenseClaims" : false, + "Class" : "ASSET", + "ReportingCode" : "ASS", + "ReportingCodeName" : "Assets", + "HasAttachments" : false, + "UpdatedDateUTC" : "2016-06-03T08:31:14.517-07:00" + }, + "Amount" : "50.00", + "FromIsReconciled" : true, + "ToIsReconciled" : true, + "Reference" : "Sub 098801" + } ] + } } }, "required" : true @@ -8269,14 +8327,9 @@

Usage and SDK Samples

UUID bankTransferID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createBankTransferAttachmentByFileName(accessToken, xeroTenantId, bankTransferID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.createBankTransferAttachmentByFileName(accessToken, xeroTenantId, bankTransferID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createBankTransferAttachmentByFileName"); @@ -8414,7 +8467,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -8431,7 +8484,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -8623,7 +8676,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -8802,7 +8859,28 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/BatchPayments" }, - "example" : "{ \"BatchPayments\": [ { \"Account\": { \"AccountID\": \"00000000-0000-0000-0000-000000000000\" }, \"Reference\": \"ref\", \"Date\": \"2018-08-01\", \"Payments\": [ { \"Account\": { \"Code\": \"001\" }, \"Date\": \"2019-12-31\", \"Amount\": 500, \"Invoice\": { \"InvoiceID\": \"00000000-0000-0000-0000-000000000000\", \"LineItems\": [], \"Contact\": {}, \"Type\": \"ACCPAY\" } } ] } ] }" + "example" : { + "BatchPayments" : [ { + "Account" : { + "AccountID" : "00000000-0000-0000-0000-000000000000" + }, + "Reference" : "ref", + "Date" : "2018-08-01", + "Payments" : [ { + "Account" : { + "Code" : "001" + }, + "Date" : "2019-12-31", + "Amount" : 500, + "Invoice" : { + "InvoiceID" : "00000000-0000-0000-0000-000000000000", + "LineItems" : [ ], + "Contact" : { }, + "Type" : "ACCPAY" + } + } ] + } ] + } } }, "required" : true @@ -9020,7 +9098,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -9214,7 +9296,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PaymentServices" }, - "example" : "{ \"PaymentServices\": [ { \"PaymentServiceID\": \"54b3b4f6-0443-4fba-bcd1-61ec0c35ca55\", \"PaymentServiceName\": \"PayUpNow\", \"PaymentServiceUrl\": \"https://www.payupnow.com/\", \"PaymentServiceType\": \"Custom\", \"PayNowText\": \"Time To Pay\" } ] }" + "example" : { + "PaymentServices" : [ { + "PaymentServiceID" : "54b3b4f6-0443-4fba-bcd1-61ec0c35ca55", + "PaymentServiceName" : "PayUpNow", + "PaymentServiceUrl" : "https://www.payupnow.com/", + "PaymentServiceType" : "Custom", + "PayNowText" : "Time To Pay" + } ] + } } }, "required" : true @@ -9265,14 +9355,9 @@

Usage and SDK Samples

UUID contactID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createContactAttachmentByFileName(accessToken, xeroTenantId, contactID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.createContactAttachmentByFileName(accessToken, xeroTenantId, contactID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createContactAttachmentByFileName"); @@ -9410,7 +9495,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -9427,7 +9512,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -9584,7 +9669,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/ContactGroups" }, - "example" : "{ \"ContactGroups\": [{ \"Name\": \"VIPs\" }]}" + "example" : { + "ContactGroups" : [ { + "Name" : "VIPs" + } ] + } } }, "required" : true @@ -9775,7 +9864,13 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Contacts" }, - "example" : "{ \"Contacts\": [ { \"ContactID\": \"a3675fc4-f8dd-4f03-ba5b-f1870566bcd7\" }, { \"ContactID\": \"4e1753b9-018a-4775-b6aa-1bc7871cfee3\" } ] }" + "example" : { + "Contacts" : [ { + "ContactID" : "a3675fc4-f8dd-4f03-ba5b-f1870566bcd7" + }, { + "ContactID" : "4e1753b9-018a-4775-b6aa-1bc7871cfee3" + } ] + } } }, "required" : true @@ -9966,7 +10061,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -10132,7 +10231,66 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Contacts" }, - "example" : "{ \"Contacts\": [ { \"ContactID\": \"3ff6d40c-af9a-40a3-89ce-3c1556a25591\", \"ContactStatus\": \"ACTIVE\", \"Name\": \"Foo9987\", \"EmailAddress\": \"sid32476@blah.com\", \"BankAccountDetails\": \"\", \"Addresses\": [ { \"AddressType\": \"STREET\", \"City\": \"\", \"Region\": \"\", \"PostalCode\": \"\", \"Country\": \"\" }, { \"AddressType\": \"POBOX\", \"City\": \"\", \"Region\": \"\", \"PostalCode\": \"\", \"Country\": \"\" } ], \"Phones\": [ { \"PhoneType\": \"DEFAULT\", \"PhoneNumber\": \"\", \"PhoneAreaCode\": \"\", \"PhoneCountryCode\": \"\" }, { \"PhoneType\": \"DDI\", \"PhoneNumber\": \"\", \"PhoneAreaCode\": \"\", \"PhoneCountryCode\": \"\" }, { \"PhoneType\": \"FAX\", \"PhoneNumber\": \"\", \"PhoneAreaCode\": \"\", \"PhoneCountryCode\": \"\" }, { \"PhoneType\": \"MOBILE\", \"PhoneNumber\": \"555-1212\", \"PhoneAreaCode\": \"415\", \"PhoneCountryCode\": \"\" } ], \"UpdatedDateUTC\": \"/Date(1551399321043+0000)/\", \"ContactGroups\": [], \"IsSupplier\": false, \"IsCustomer\": false, \"SalesTrackingCategories\": [], \"PurchasesTrackingCategories\": [], \"PaymentTerms\": { \"Bills\": { \"Day\": 15, \"Type\": \"OFCURRENTMONTH\" }, \"Sales\": { \"Day\": 10, \"Type\": \"DAYSAFTERBILLMONTH\" } }, \"ContactPersons\": [] } ] }" + "example" : { + "Contacts" : [ { + "ContactID" : "3ff6d40c-af9a-40a3-89ce-3c1556a25591", + "ContactStatus" : "ACTIVE", + "Name" : "Foo9987", + "EmailAddress" : "sid32476@blah.com", + "BankAccountDetails" : "", + "Addresses" : [ { + "AddressType" : "STREET", + "City" : "", + "Region" : "", + "PostalCode" : "", + "Country" : "" + }, { + "AddressType" : "POBOX", + "City" : "", + "Region" : "", + "PostalCode" : "", + "Country" : "" + } ], + "Phones" : [ { + "PhoneType" : "DEFAULT", + "PhoneNumber" : "", + "PhoneAreaCode" : "", + "PhoneCountryCode" : "" + }, { + "PhoneType" : "DDI", + "PhoneNumber" : "", + "PhoneAreaCode" : "", + "PhoneCountryCode" : "" + }, { + "PhoneType" : "FAX", + "PhoneNumber" : "", + "PhoneAreaCode" : "", + "PhoneCountryCode" : "" + }, { + "PhoneType" : "MOBILE", + "PhoneNumber" : "555-1212", + "PhoneAreaCode" : "415", + "PhoneCountryCode" : "" + } ], + "UpdatedDateUTC" : "/Date(1551399321043+0000)/", + "ContactGroups" : [ ], + "IsSupplier" : false, + "IsCustomer" : false, + "SalesTrackingCategories" : [ ], + "PurchasesTrackingCategories" : [ ], + "PaymentTerms" : { + "Bills" : { + "Day" : 15, + "Type" : "OFCURRENTMONTH" + }, + "Sales" : { + "Day" : 10, + "Type" : "DAYSAFTERBILLMONTH" + } + }, + "ContactPersons" : [ ] + } ] + } } }, "required" : true @@ -10357,7 +10515,16 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Allocations" }, - "example" : "{ \"Allocations\": [ { \"Invoice\": { \"LineItems\": [], \"InvoiceID\": \"c45720a1-ade3-4a38-a064-d15489be6841\" }, \"Amount\": 1, \"Date\": \"2019-03-05\" } ] }" + "example" : { + "Allocations" : [ { + "Invoice" : { + "LineItems" : [ ], + "InvoiceID" : "c45720a1-ade3-4a38-a064-d15489be6841" + }, + "Amount" : 1, + "Date" : "2019-03-05" + } ] + } } }, "required" : true @@ -10436,14 +10603,9 @@

Usage and SDK Samples

String fileName = 'xero-dev.jpg'; Boolean includeOnline = true; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createCreditNoteAttachmentByFileName(accessToken, xeroTenantId, creditNoteID, fileName, body, includeOnline, idempotencyKey, mimeType); + Attachments result = apiInstance.createCreditNoteAttachmentByFileName(accessToken, xeroTenantId, creditNoteID, fileName, body, includeOnline, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createCreditNoteAttachmentByFileName"); @@ -10581,7 +10743,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -10598,7 +10760,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -10817,7 +10979,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -10991,7 +11157,21 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/CreditNotes" }, - "example" : "{ \"CreditNotes\":[ { \"Type\":\"ACCPAYCREDIT\", \"Contact\":{ \"ContactID\":\"430fa14a-f945-44d3-9f97-5df5e28441b8\" }, \"Date\":\"2019-01-05\", \"LineItems\":[ { \"Description\":\"Foobar\", \"Quantity\":2.0, \"UnitAmount\":20.0, \"AccountCode\":\"400\" } ] } ] }" + "example" : { + "CreditNotes" : [ { + "Type" : "ACCPAYCREDIT", + "Contact" : { + "ContactID" : "430fa14a-f945-44d3-9f97-5df5e28441b8" + }, + "Date" : "2019-01-05", + "LineItems" : [ { + "Description" : "Foobar", + "Quantity" : 2.0, + "UnitAmount" : 20.0, + "AccountCode" : "400" + } ] + } ] + } } }, "required" : true @@ -11192,7 +11372,10 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Currency" }, - "example" : "{ \"Code\": \"USD\", \"Description\": \"United States Dollar\" }" + "example" : { + "Code" : "USD", + "Description" : "United States Dollar" + } } }, "required" : true @@ -11350,7 +11533,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Employees" }, - "example" : "{ \"Employees\": [ { \"FirstName\": \"Nick\", \"LastName\": \"Fury\", \"ExternalLink\": { \"Url\": \"http://twitter.com/#!/search/Nick+Fury\" } } ] }" + "example" : { + "Employees" : [ { + "FirstName" : "Nick", + "LastName" : "Fury", + "ExternalLink" : { + "Url" : "http://twitter.com/#!/search/Nick+Fury" + } + } ] + } } }, "required" : true @@ -11568,7 +11759,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -11737,7 +11932,18 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/ExpenseClaims" }, - "example" : "{ \"ExpenseClaims\": [ { \"Status\": \"SUBMITTED\", \"User\": { \"UserID\": \"d1164823-0ac1-41ad-987b-b4e30fe0b273\" }, \"Receipts\": [ { \"Lineitems\": [], \"ReceiptID\": \"dc1c7f6d-0a4c-402f-acac-551d62ce5816\" } ] } ] }" + "example" : { + "ExpenseClaims" : [ { + "Status" : "SUBMITTED", + "User" : { + "UserID" : "d1164823-0ac1-41ad-987b-b4e30fe0b273" + }, + "Receipts" : [ { + "Lineitems" : [ ], + "ReceiptID" : "dc1c7f6d-0a4c-402f-acac-551d62ce5816" + } ] + } ] + } } }, "required" : true @@ -11789,14 +11995,9 @@

Usage and SDK Samples

String fileName = 'xero-dev.jpg'; Boolean includeOnline = true; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createInvoiceAttachmentByFileName(accessToken, xeroTenantId, invoiceID, fileName, body, includeOnline, idempotencyKey, mimeType); + Attachments result = apiInstance.createInvoiceAttachmentByFileName(accessToken, xeroTenantId, invoiceID, fileName, body, includeOnline, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createInvoiceAttachmentByFileName"); @@ -11934,7 +12135,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -11951,7 +12152,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -12170,7 +12371,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -12356,7 +12561,26 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Invoices" }, - "example" : "{ \"Invoices\": [ { \"Type\": \"ACCREC\", \"Contact\": { \"ContactID\": \"430fa14a-f945-44d3-9f97-5df5e28441b8\" }, \"LineItems\": [ { \"Description\": \"Acme Tires\", \"Quantity\": 2, \"UnitAmount\": 20, \"AccountCode\": \"200\", \"TaxType\": \"NONE\", \"LineAmount\": 40 } ], \"Date\": \"2019-03-11\", \"DueDate\": \"2018-12-10\", \"Reference\": \"Website Design\", \"Status\": \"AUTHORISED\" } ] }" + "example" : { + "Invoices" : [ { + "Type" : "ACCREC", + "Contact" : { + "ContactID" : "430fa14a-f945-44d3-9f97-5df5e28441b8" + }, + "LineItems" : [ { + "Description" : "Acme Tires", + "Quantity" : 2, + "UnitAmount" : 20, + "AccountCode" : "200", + "TaxType" : "NONE", + "LineAmount" : 40 + } ], + "Date" : "2019-03-11", + "DueDate" : "2018-12-10", + "Reference" : "Website Design", + "Status" : "AUTHORISED" + } ] + } } }, "required" : true @@ -12594,7 +12818,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -12759,7 +12987,17 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Items" }, - "example" : "{ \"Items\": [ { \"Code\": \"code123\", \"Name\": \"Item Name XYZ\", \"Description\": \"Foobar\", \"InventoryAssetAccountCode\": \"140\", \"PurchaseDetails\": { \"COGSAccountCode\": \"500\" } } ] }" + "example" : { + "Items" : [ { + "Code" : "code123", + "Name" : "Item Name XYZ", + "Description" : "Foobar", + "InventoryAssetAccountCode" : "140", + "PurchaseDetails" : { + "COGSAccountCode" : "500" + } + } ] + } } }, "required" : true @@ -12960,7 +13198,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/LinkedTransaction" }, - "example" : "{ \"LinkedTransactions\": [ { \"SourceTransactionID\": \"a848644a-f20f-4630-98c3-386bd7505631\", \"SourceLineItemID\": \"b0df260d-3cc8-4ced-9bd6-41924f624ed3\" } ] }" + "example" : { + "LinkedTransactions" : [ { + "SourceTransactionID" : "a848644a-f20f-4630-98c3-386bd7505631", + "SourceLineItemID" : "b0df260d-3cc8-4ced-9bd6-41924f624ed3" + } ] + } } }, "required" : true @@ -13011,14 +13254,9 @@

Usage and SDK Samples

UUID manualJournalID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createManualJournalAttachmentByFileName(accessToken, xeroTenantId, manualJournalID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.createManualJournalAttachmentByFileName(accessToken, xeroTenantId, manualJournalID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createManualJournalAttachmentByFileName"); @@ -13156,7 +13394,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -13173,7 +13411,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -13365,7 +13603,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -13539,7 +13781,25 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/ManualJournals" }, - "example" : "{ \"ManualJournals\": [ { \"Narration\": \"Journal Desc\", \"JournalLines\": [ { \"LineAmount\": 100, \"AccountCode\": \"400\", \"Description\": \"Money Movement\" }, { \"LineAmount\": -100, \"AccountCode\": \"400\", \"Description\": \"Prepayment of things\", \"Tracking\": [ { \"Name\": \"North\", \"Option\": \"Region\" } ] } ], \"Date\": \"2019-03-14\" } ] }" + "example" : { + "ManualJournals" : [ { + "Narration" : "Journal Desc", + "JournalLines" : [ { + "LineAmount" : 100, + "AccountCode" : "400", + "Description" : "Money Movement" + }, { + "LineAmount" : -100, + "AccountCode" : "400", + "Description" : "Prepayment of things", + "Tracking" : [ { + "Name" : "North", + "Option" : "Region" + } ] + } ], + "Date" : "2019-03-14" + } ] + } } }, "required" : true @@ -13764,7 +14024,18 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Allocations" }, - "example" : "{ \"Allocations\": [ { \"Invoice\": { \"InvoiceID\": \"00000000-0000-0000-0000-000000000000\", \"LineItems\": [], \"Contact\": {}, \"Type\": \"ACCPAY\" }, \"Amount\": 10.00, \"Date\": \"2019-03-12\" } ] }" + "example" : { + "Allocations" : [ { + "Invoice" : { + "InvoiceID" : "00000000-0000-0000-0000-000000000000", + "LineItems" : [ ], + "Contact" : { }, + "Type" : "ACCPAY" + }, + "Amount" : 10.0, + "Date" : "2019-03-12" + } ] + } } }, "required" : true @@ -13982,7 +14253,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -14148,7 +14423,19 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Payment" }, - "example" : "{ \"Payments\": [ { \"Invoice\": { \"LineItems\": [], \"InvoiceID\": \"00000000-0000-0000-0000-000000000000\" }, \"Account\": { \"Code\": \"970\" }, \"Date\": \"2019-03-12\", \"Amount\": 1 } ] }" + "example" : { + "Payments" : [ { + "Invoice" : { + "LineItems" : [ ], + "InvoiceID" : "00000000-0000-0000-0000-000000000000" + }, + "Account" : { + "Code" : "970" + }, + "Date" : "2019-03-12", + "Amount" : 1 + } ] + } } }, "required" : true @@ -14339,7 +14626,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -14497,7 +14788,13 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PaymentServices" }, - "example" : "{ \"PaymentServices\": [ { \"PaymentServiceName\": \"PayUpNow\", \"PaymentServiceUrl\": \"https://www.payupnow.com/\", \"PayNowText\": \"Time To Pay\" } ] }" + "example" : { + "PaymentServices" : [ { + "PaymentServiceName" : "PayUpNow", + "PaymentServiceUrl" : "https://www.payupnow.com/", + "PayNowText" : "Time To Pay" + } ] + } } }, "required" : true @@ -14664,7 +14961,19 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Payments" }, - "example" : "{ \"Payments\": [ { \"Invoice\": { \"LineItems\": [], \"InvoiceID\": \"00000000-0000-0000-0000-000000000000\" }, \"Account\": { \"Code\": \"970\" }, \"Date\": \"2019-03-12\", \"Amount\": 1 } ] }" + "example" : { + "Payments" : [ { + "Invoice" : { + "LineItems" : [ ], + "InvoiceID" : "00000000-0000-0000-0000-000000000000" + }, + "Account" : { + "Code" : "970" + }, + "Date" : "2019-03-12", + "Amount" : 1 + } ] + } } }, "required" : true @@ -14889,7 +15198,16 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Allocations" }, - "example" : "{ \"Allocations\": [ { \"Invoice\": { \"LineItems\": [], \"InvoiceID\": \"00000000-0000-0000-0000-000000000000\" }, \"Amount\": 1, \"Date\": \"2019-01-10\" } ] }" + "example" : { + "Allocations" : [ { + "Invoice" : { + "LineItems" : [ ], + "InvoiceID" : "00000000-0000-0000-0000-000000000000" + }, + "Amount" : 1, + "Date" : "2019-01-10" + } ] + } } }, "required" : true @@ -15107,7 +15425,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -15158,14 +15480,9 @@

Usage and SDK Samples

UUID purchaseOrderID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createPurchaseOrderAttachmentByFileName(accessToken, xeroTenantId, purchaseOrderID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.createPurchaseOrderAttachmentByFileName(accessToken, xeroTenantId, purchaseOrderID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createPurchaseOrderAttachmentByFileName"); @@ -15303,7 +15620,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -15320,7 +15637,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -15512,7 +15829,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -15684,7 +16005,20 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PurchaseOrders" }, - "example" : "{ \"PurchaseOrders\": [ { \"Contact\": { \"ContactID\": \"00000000-0000-0000-0000-000000000000\" }, \"LineItems\": [ { \"Description\": \"Foobar\", \"Quantity\": 1, \"UnitAmount\": 20, \"AccountCode\": \"710\" } ], \"Date\": \"2019-03-13\" } ] }" + "example" : { + "PurchaseOrders" : [ { + "Contact" : { + "ContactID" : "00000000-0000-0000-0000-000000000000" + }, + "LineItems" : [ { + "Description" : "Foobar", + "Quantity" : 1, + "UnitAmount" : 20, + "AccountCode" : "710" + } ], + "Date" : "2019-03-13" + } ] + } } }, "required" : true @@ -15762,14 +16096,9 @@

Usage and SDK Samples

UUID quoteID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createQuoteAttachmentByFileName(accessToken, xeroTenantId, quoteID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.createQuoteAttachmentByFileName(accessToken, xeroTenantId, quoteID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createQuoteAttachmentByFileName"); @@ -15907,7 +16236,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -15924,7 +16253,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -16116,7 +16445,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -16288,7 +16621,20 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Quotes" }, - "example" : "{ \"Quotes\": [ { \"Contact\": { \"ContactID\": \"00000000-0000-0000-0000-000000000000\" }, \"LineItems\": [ { \"Description\": \"Foobar\", \"Quantity\": 1, \"UnitAmount\": 20, \"AccountCode\": \"12775\" } ], \"Date\": \"2020-02-01\" } ] }" + "example" : { + "Quotes" : [ { + "Contact" : { + "ContactID" : "00000000-0000-0000-0000-000000000000" + }, + "LineItems" : [ { + "Description" : "Foobar", + "Quantity" : 1, + "UnitAmount" : 20, + "AccountCode" : "12775" + } ], + "Date" : "2020-02-01" + } ] + } } }, "required" : true @@ -16491,7 +16837,26 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Receipts" }, - "example" : "{ \"Receipts\": [ { \"Contact\": { \"ContactID\": \"00000000-0000-0000-0000-000000000000\" }, \"Lineitems\": [ { \"Description\": \"Foobar\", \"Quantity\": 2, \"UnitAmount\": 20, \"AccountCode\": \"400\", \"TaxType\": \"NONE\", \"LineAmount\": 40 } ], \"User\": { \"UserID\": \"00000000-0000-0000-0000-000000000000\" }, \"LineAmountTypes\": \"NoTax\", \"Status\": \"DRAFT\" } ] }" + "example" : { + "Receipts" : [ { + "Contact" : { + "ContactID" : "00000000-0000-0000-0000-000000000000" + }, + "Lineitems" : [ { + "Description" : "Foobar", + "Quantity" : 2, + "UnitAmount" : 20, + "AccountCode" : "400", + "TaxType" : "NONE", + "LineAmount" : 40 + } ], + "User" : { + "UserID" : "00000000-0000-0000-0000-000000000000" + }, + "LineAmountTypes" : "NoTax", + "Status" : "DRAFT" + } ] + } } }, "required" : true @@ -16569,14 +16934,9 @@

Usage and SDK Samples

UUID receiptID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createReceiptAttachmentByFileName(accessToken, xeroTenantId, receiptID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.createReceiptAttachmentByFileName(accessToken, xeroTenantId, receiptID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createReceiptAttachmentByFileName"); @@ -16714,7 +17074,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -16731,7 +17091,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -16923,7 +17283,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -16974,14 +17338,9 @@

Usage and SDK Samples

UUID repeatingInvoiceID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.createRepeatingInvoiceAttachmentByFileName(accessToken, xeroTenantId, repeatingInvoiceID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.createRepeatingInvoiceAttachmentByFileName(accessToken, xeroTenantId, repeatingInvoiceID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#createRepeatingInvoiceAttachmentByFileName"); @@ -17119,7 +17478,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -17136,7 +17495,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -17328,7 +17687,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/HistoryRecords" }, - "example" : "{ \"HistoryRecords\": [ { \"Details\": \"Hello World\" } ] }" + "example" : { + "HistoryRecords" : [ { + "Details" : "Hello World" + } ] + } } }, "required" : true @@ -17479,7 +17842,42 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/RepeatingInvoices" }, - "example" : "{ \"RepeatingInvoices\": [ { \"Schedule\": { \"Period\": 1, \"Unit\": \"MONTHLY\", \"DueDate\": 10, \"DueDateType\": \"OFFOLLOWINGMONTH\", \"StartDate\": \"\\/Date(1555286400000+0000)\\/\" }, \"Type\": \"ACCREC\", \"Reference\": \"[Week]\", \"ApprovedForSending\": false, \"SendCopy\": false, \"MarkAsSent\": false, \"IncludePDF\": false, \"Contact\": { \"ContactID\": \"430fa14a-f945-44d3-9f97-5df5e28441b8\", \"Name\": \"Liam Gallagher\" }, \"Status\": \"AUTHORISED\", \"LineAmountTypes\": \"Exclusive\", \"LineItems\": [ { \"Description\": \"Guitars Fender Strat\", \"UnitAmount\": 5000.00, \"TaxType\": \"OUTPUT2\", \"TaxAmount\": 750.00, \"LineAmount\": 5000.00, \"AccountCode\": \"200\", \"Tracking\": [], \"Quantity\": 1.0000, \"LineItemID\": \"13a8353c-d2af-4d5b-920c-438449f08900\", \"DiscountEnteredAsPercent\": true } ], \"CurrencyCode\": \"NZD\" } ] }" + "example" : { + "RepeatingInvoices" : [ { + "Schedule" : { + "Period" : 1, + "Unit" : "MONTHLY", + "DueDate" : 10, + "DueDateType" : "OFFOLLOWINGMONTH", + "StartDate" : "/Date(1555286400000+0000)/" + }, + "Type" : "ACCREC", + "Reference" : "[Week]", + "ApprovedForSending" : false, + "SendCopy" : false, + "MarkAsSent" : false, + "IncludePDF" : false, + "Contact" : { + "ContactID" : "430fa14a-f945-44d3-9f97-5df5e28441b8", + "Name" : "Liam Gallagher" + }, + "Status" : "AUTHORISED", + "LineAmountTypes" : "Exclusive", + "LineItems" : [ { + "Description" : "Guitars Fender Strat", + "UnitAmount" : 5000.0, + "TaxType" : "OUTPUT2", + "TaxAmount" : 750.0, + "LineAmount" : 5000.0, + "AccountCode" : "200", + "Tracking" : [ ], + "Quantity" : 1.0, + "LineItemID" : "13a8353c-d2af-4d5b-920c-438449f08900", + "DiscountEnteredAsPercent" : true + } ], + "CurrencyCode" : "NZD" + } ] + } } }, "required" : true @@ -17670,7 +18068,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/TaxRates" }, - "example" : "{ \"TaxRates\": [ { \"Name\": \"CA State Tax\", \"TaxComponents\": [ { \"Name\": \"State Tax\", \"Rate\": 2.25 } ] } ] }" + "example" : { + "TaxRates" : [ { + "Name" : "CA State Tax", + "TaxComponents" : [ { + "Name" : "State Tax", + "Rate" : 2.25 + } ] + } ] + } } }, "required" : true @@ -17823,7 +18229,9 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/TrackingCategory" }, - "example" : "{ name: \"FooBar\" }" + "example" : { + "name" : "FooBar" + } } }, "required" : true @@ -18011,7 +18419,9 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/TrackingOption" }, - "example" : "{ name: \" Bar\" }" + "example" : { + "name" : " Bar" + } } }, "required" : true @@ -18291,7 +18701,10 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/BatchPaymentDelete" }, - "example" : "{ \"BatchPaymentID\": \"9bf296e9-0748-4d29-a3dc-24dde1098030\", \"Status\":\"DELETED\" }" + "example" : { + "BatchPaymentID" : "9bf296e9-0748-4d29-a3dc-24dde1098030", + "Status" : "DELETED" + } } }, "required" : true @@ -18475,7 +18888,9 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/BatchPaymentDeleteByUrlParam" }, - "example" : "{ \"Status\":\"DELETED\" }" + "example" : { + "Status" : "DELETED" + } } }, "required" : true @@ -19504,7 +19919,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PaymentDelete" }, - "example" : "{ \"Payments\":[ { \"Status\":\"DELETED\" } ] }" + "example" : { + "Payments" : [ { + "Status" : "DELETED" + } ] + } } }, "required" : true @@ -20126,7 +20545,7 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/RequestEmpty" }, - "example" : "{}" + "example" : { } } }, "required" : true @@ -40660,7 +41079,33 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Setup" }, - "example" : "{ \"ConversionDate\": {}, \"ConversionBalances\": [], \"Accounts\": [ { \"Code\": \"200\", \"Name\": \"Sales\", \"Type\": \"SALES\", \"ReportingCode\": \"REV.TRA.GOO\" }, { \"Code\": \"400\", \"Name\": \"Advertising\", \"Type\": \"OVERHEADS\", \"ReportingCode\": \"EXP\" }, { \"Code\": \"610\", \"Name\": \"Accounts Receivable\", \"Type\": \"CURRENT\", \"SystemAccount\": \"DEBTORS\", \"ReportingCode\": \"ASS.CUR.REC.TRA\" }, { \"Code\": \"800\", \"Name\": \"Accounts Payable\", \"Type\": \"CURRLIAB\", \"SystemAccount\": \"CREDITORS\", \"ReportingCode\": \"LIA.CUR.PAY\" } ] }" + "example" : { + "ConversionDate" : { }, + "ConversionBalances" : [ ], + "Accounts" : [ { + "Code" : "200", + "Name" : "Sales", + "Type" : "SALES", + "ReportingCode" : "REV.TRA.GOO" + }, { + "Code" : "400", + "Name" : "Advertising", + "Type" : "OVERHEADS", + "ReportingCode" : "EXP" + }, { + "Code" : "610", + "Name" : "Accounts Receivable", + "Type" : "CURRENT", + "SystemAccount" : "DEBTORS", + "ReportingCode" : "ASS.CUR.REC.TRA" + }, { + "Code" : "800", + "Name" : "Accounts Payable", + "Type" : "CURRLIAB", + "SystemAccount" : "CREDITORS", + "ReportingCode" : "LIA.CUR.PAY" + } ] + } } }, "required" : true @@ -40855,7 +41300,22 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Accounts" }, - "example" : "{ \"Accounts\":[ { \"Code\":\"123456\", \"Name\":\"BarFoo\", \"AccountID\":\"99ce6032-0678-4aa0-8148-240c75fee33a\", \"Type\":\"EXPENSE\", \"Description\":\"GoodBye World\", \"TaxType\":\"INPUT\", \"EnablePaymentsToAccount\":false, \"ShowInExpenseClaims\":false, \"Class\":\"EXPENSE\", \"ReportingCode\":\"EXP\", \"ReportingCodeName\":\"Expense\", \"UpdatedDateUTC\":\"2019-02-21T16:29:47.96-08:00\" } ] }" + "example" : { + "Accounts" : [ { + "Code" : "123456", + "Name" : "BarFoo", + "AccountID" : "99ce6032-0678-4aa0-8148-240c75fee33a", + "Type" : "EXPENSE", + "Description" : "GoodBye World", + "TaxType" : "INPUT", + "EnablePaymentsToAccount" : false, + "ShowInExpenseClaims" : false, + "Class" : "EXPENSE", + "ReportingCode" : "EXP", + "ReportingCodeName" : "Expense", + "UpdatedDateUTC" : "2019-02-21T16:29:47.96-08:00" + } ] + } } }, "required" : true @@ -40906,14 +41366,9 @@

Usage and SDK Samples

UUID accountID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updateAccountAttachmentByFileName(accessToken, xeroTenantId, accountID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updateAccountAttachmentByFileName(accessToken, xeroTenantId, accountID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updateAccountAttachmentByFileName"); @@ -41051,7 +41506,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -41068,7 +41523,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -41279,7 +41734,77 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/BankTransactions" }, - "example" : "{ \"BankTransactions\": [ { \"Type\": \"SPEND\", \"Contact\": { \"ContactID\": \"00000000-0000-0000-0000-000000000000\", \"ContactStatus\": \"ACTIVE\", \"Name\": \"Buzz Lightyear\", \"FirstName\": \"Buzz\", \"LastName\": \"Lightyear\", \"EmailAddress\": \"buzz.Lightyear@email.com\", \"ContactPersons\": [], \"BankAccountDetails\": \"\", \"Addresses\": [ { \"AddressType\": \"STREET\", \"City\": \"\", \"Region\": \"\", \"PostalCode\": \"\", \"Country\": \"\" }, { \"AddressType\": \"POBOX\", \"AddressLine1\": \"\", \"AddressLine2\": \"\", \"AddressLine3\": \"\", \"AddressLine4\": \"\", \"City\": \"Palo Alto\", \"Region\": \"CA\", \"PostalCode\": \"94020\", \"Country\": \"United States\" } ], \"Phones\": [ { \"PhoneType\": \"DEFAULT\", \"PhoneNumber\": \"847-1294\", \"PhoneAreaCode\": \"(626)\", \"PhoneCountryCode\": \"\" }, { \"PhoneType\": \"DDI\", \"PhoneNumber\": \"\", \"PhoneAreaCode\": \"\", \"PhoneCountryCode\": \"\" }, { \"PhoneType\": \"FAX\", \"PhoneNumber\": \"\", \"PhoneAreaCode\": \"\", \"PhoneCountryCode\": \"\" }, { \"PhoneType\": \"MOBILE\", \"PhoneNumber\": \"\", \"PhoneAreaCode\": \"\", \"PhoneCountryCode\": \"\" } ], \"UpdatedDateUTC\": \"2017-08-21T13:49:04.227-07:00\", \"ContactGroups\": [] }, \"Lineitems\": [], \"BankAccount\": { \"Code\": \"088\", \"Name\": \"Business Wells Fargo\", \"AccountID\": \"00000000-0000-0000-0000-000000000000\" }, \"IsReconciled\": false, \"Date\": \"2019-02-25\", \"Reference\": \"You just updated\", \"CurrencyCode\": \"USD\", \"CurrencyRate\": 1, \"Status\": \"AUTHORISED\", \"LineAmountTypes\": \"Inclusive\", \"TotalTax\": 1.74, \"BankTransactionID\": \"00000000-0000-0000-0000-000000000000\", \"UpdatedDateUTC\": \"2019-02-26T12:39:27.813-08:00\" } ] }" + "example" : { + "BankTransactions" : [ { + "Type" : "SPEND", + "Contact" : { + "ContactID" : "00000000-0000-0000-0000-000000000000", + "ContactStatus" : "ACTIVE", + "Name" : "Buzz Lightyear", + "FirstName" : "Buzz", + "LastName" : "Lightyear", + "EmailAddress" : "buzz.Lightyear@email.com", + "ContactPersons" : [ ], + "BankAccountDetails" : "", + "Addresses" : [ { + "AddressType" : "STREET", + "City" : "", + "Region" : "", + "PostalCode" : "", + "Country" : "" + }, { + "AddressType" : "POBOX", + "AddressLine1" : "", + "AddressLine2" : "", + "AddressLine3" : "", + "AddressLine4" : "", + "City" : "Palo Alto", + "Region" : "CA", + "PostalCode" : "94020", + "Country" : "United States" + } ], + "Phones" : [ { + "PhoneType" : "DEFAULT", + "PhoneNumber" : "847-1294", + "PhoneAreaCode" : "(626)", + "PhoneCountryCode" : "" + }, { + "PhoneType" : "DDI", + "PhoneNumber" : "", + "PhoneAreaCode" : "", + "PhoneCountryCode" : "" + }, { + "PhoneType" : "FAX", + "PhoneNumber" : "", + "PhoneAreaCode" : "", + "PhoneCountryCode" : "" + }, { + "PhoneType" : "MOBILE", + "PhoneNumber" : "", + "PhoneAreaCode" : "", + "PhoneCountryCode" : "" + } ], + "UpdatedDateUTC" : "2017-08-21T13:49:04.227-07:00", + "ContactGroups" : [ ] + }, + "Lineitems" : [ ], + "BankAccount" : { + "Code" : "088", + "Name" : "Business Wells Fargo", + "AccountID" : "00000000-0000-0000-0000-000000000000" + }, + "IsReconciled" : false, + "Date" : "2019-02-25", + "Reference" : "You just updated", + "CurrencyCode" : "USD", + "CurrencyRate" : 1, + "Status" : "AUTHORISED", + "LineAmountTypes" : "Inclusive", + "TotalTax" : 1.74, + "BankTransactionID" : "00000000-0000-0000-0000-000000000000", + "UpdatedDateUTC" : "2019-02-26T12:39:27.813-08:00" + } ] + } } }, "required" : true @@ -41357,14 +41882,9 @@

Usage and SDK Samples

UUID bankTransactionID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updateBankTransactionAttachmentByFileName(accessToken, xeroTenantId, bankTransactionID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updateBankTransactionAttachmentByFileName(accessToken, xeroTenantId, bankTransactionID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updateBankTransactionAttachmentByFileName"); @@ -41502,7 +42022,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -41519,7 +42039,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -41571,14 +42091,9 @@

Usage and SDK Samples

UUID bankTransferID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updateBankTransferAttachmentByFileName(accessToken, xeroTenantId, bankTransferID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updateBankTransferAttachmentByFileName(accessToken, xeroTenantId, bankTransferID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updateBankTransferAttachmentByFileName"); @@ -41716,7 +42231,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -41733,7 +42248,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -41926,7 +42441,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Contacts" }, - "example" : "{ \"Contacts\": [{ \"ContactID\": \"00000000-0000-0000-0000-000000000000\", \"Name\": \"Thanos\" }]}" + "example" : { + "Contacts" : [ { + "ContactID" : "00000000-0000-0000-0000-000000000000", + "Name" : "Thanos" + } ] + } } }, "required" : true @@ -41977,14 +42497,9 @@

Usage and SDK Samples

UUID contactID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updateContactAttachmentByFileName(accessToken, xeroTenantId, contactID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updateContactAttachmentByFileName(accessToken, xeroTenantId, contactID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updateContactAttachmentByFileName"); @@ -42122,7 +42637,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -42139,7 +42654,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -42331,7 +42846,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/ContactGroups" }, - "example" : "{ \"ContactGroups\":[ { \"Name\":\"Suppliers\" } ] }" + "example" : { + "ContactGroups" : [ { + "Name" : "Suppliers" + } ] + } } }, "required" : true @@ -42541,7 +43060,24 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/CreditNotes" }, - "example" : "{ \"CreditNotes\": [ { \"Type\": \"ACCPAYCREDIT\", \"Contact\": { \"ContactID\": \"430fa14a-f945-44d3-9f97-5df5e28441b8\" }, \"Date\": \"2019-01-05\", \"Status\": \"AUTHORISED\", \"Reference\": \"HelloWorld\", \"SentToContact\": true, \"LineItems\": [ { \"Description\": \"Foobar\", \"Quantity\": 2, \"UnitAmount\": 20, \"AccountCode\": \"400\" } ] } ] }" + "example" : { + "CreditNotes" : [ { + "Type" : "ACCPAYCREDIT", + "Contact" : { + "ContactID" : "430fa14a-f945-44d3-9f97-5df5e28441b8" + }, + "Date" : "2019-01-05", + "Status" : "AUTHORISED", + "Reference" : "HelloWorld", + "SentToContact" : true, + "LineItems" : [ { + "Description" : "Foobar", + "Quantity" : 2, + "UnitAmount" : 20, + "AccountCode" : "400" + } ] + } ] + } } }, "required" : true @@ -42619,14 +43155,9 @@

Usage and SDK Samples

UUID creditNoteID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updateCreditNoteAttachmentByFileName(accessToken, xeroTenantId, creditNoteID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updateCreditNoteAttachmentByFileName(accessToken, xeroTenantId, creditNoteID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updateCreditNoteAttachmentByFileName"); @@ -42764,7 +43295,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -42781,7 +43312,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -42985,7 +43516,18 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/ExpenseClaims" }, - "example" : "{ \"ExpenseClaims\": [ { \"Status\": \"SUBMITTED\", \"User\": { \"UserID\": \"d1164823-0ac1-41ad-987b-b4e30fe0b273\" }, \"Receipts\": [ { \"Lineitems\": [], \"ReceiptID\": \"dc1c7f6d-0a4c-402f-acac-551d62ce5816\" } ] } ] }" + "example" : { + "ExpenseClaims" : [ { + "Status" : "SUBMITTED", + "User" : { + "UserID" : "d1164823-0ac1-41ad-987b-b4e30fe0b273" + }, + "Receipts" : [ { + "Lineitems" : [ ], + "ReceiptID" : "dc1c7f6d-0a4c-402f-acac-551d62ce5816" + } ] + } ] + } } }, "required" : true @@ -43176,7 +43718,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Invoices" }, - "example" : "{ \"Invoices\": [{ Reference: \"May the force be with you\", \"InvoiceID\": \"00000000-0000-0000-0000-000000000000\", \"LineItems\": [], \"Contact\": {}, \"Type\": \"ACCPAY\" }]}" + "example" : { + "Invoices" : [ { + "Reference" : "May the force be with you", + "InvoiceID" : "00000000-0000-0000-0000-000000000000", + "LineItems" : [ ], + "Contact" : { }, + "Type" : "ACCPAY" + } ] + } } }, "required" : true @@ -43254,14 +43804,9 @@

Usage and SDK Samples

UUID invoiceID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updateInvoiceAttachmentByFileName(accessToken, xeroTenantId, invoiceID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updateInvoiceAttachmentByFileName(accessToken, xeroTenantId, invoiceID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updateInvoiceAttachmentByFileName"); @@ -43399,7 +43944,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -43416,7 +43961,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -43609,7 +44154,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Items" }, - "example" : "{ \"Items\": [ { \"Code\": \"ItemCode123\", \"Description\": \"Description 123\" } ] }" + "example" : { + "Items" : [ { + "Code" : "ItemCode123", + "Description" : "Description 123" + } ] + } } }, "required" : true @@ -43827,7 +44377,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/LinkedTransactions" }, - "example" : "{ \"LinkedTransactions\": [ { \"SourceTransactionID\": \"00000000-0000-0000-0000-000000000000\", \"SourceLineItemID\": \"00000000-0000-0000-0000-000000000000\" } ] }" + "example" : { + "LinkedTransactions" : [ { + "SourceTransactionID" : "00000000-0000-0000-0000-000000000000", + "SourceLineItemID" : "00000000-0000-0000-0000-000000000000" + } ] + } } }, "required" : true @@ -44034,7 +44589,13 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/ManualJournals" }, - "example" : "{ \"ManualJournals\": [ { \"Narration\": \"Hello Xero\", \"ManualJournalID\": \"00000000-0000-0000-0000-000000000000\", \"JournalLines\": [] } ] }" + "example" : { + "ManualJournals" : [ { + "Narration" : "Hello Xero", + "ManualJournalID" : "00000000-0000-0000-0000-000000000000", + "JournalLines" : [ ] + } ] + } } }, "required" : true @@ -44085,14 +44646,9 @@

Usage and SDK Samples

UUID manualJournalID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updateManualJournalAttachmentByFileName(accessToken, xeroTenantId, manualJournalID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updateManualJournalAttachmentByFileName(accessToken, xeroTenantId, manualJournalID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updateManualJournalAttachmentByFileName"); @@ -44230,7 +44786,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -44247,7 +44803,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -44423,7 +44979,23 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/BankTransactions" }, - "example" : "{ \"BankTransactions\": [ { \"Type\": \"SPEND\", \"Contact\": { \"ContactID\": \"00000000-0000-0000-0000-000000000000\" }, \"Lineitems\": [ { \"Description\": \"Foobar\", \"Quantity\": 1, \"UnitAmount\": 20, \"AccountCode\": \"400\" } ], \"BankAccount\": { \"Code\": \"088\" } } ] }" + "example" : { + "BankTransactions" : [ { + "Type" : "SPEND", + "Contact" : { + "ContactID" : "00000000-0000-0000-0000-000000000000" + }, + "Lineitems" : [ { + "Description" : "Foobar", + "Quantity" : 1, + "UnitAmount" : 20, + "AccountCode" : "400" + } ], + "BankAccount" : { + "Code" : "088" + } + } ] + } } }, "required" : true @@ -44635,7 +45207,27 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Contacts" }, - "example" : "{ \"Contacts\": [ { \"Name\": \"Bruce Banner\", \"EmailAddress\": \"hulk@avengers.com\", \"Phones\": [ { \"PhoneType\": \"MOBILE\", \"PhoneNumber\": \"555-1212\", \"PhoneAreaCode\": \"415\" } ], \"PaymentTerms\": { \"Bills\": { \"Day\": 15, \"Type\": \"OFCURRENTMONTH\" }, \"Sales\": { \"Day\": 10, \"Type\": \"DAYSAFTERBILLMONTH\" } } } ] }" + "example" : { + "Contacts" : [ { + "Name" : "Bruce Banner", + "EmailAddress" : "hulk@avengers.com", + "Phones" : [ { + "PhoneType" : "MOBILE", + "PhoneNumber" : "555-1212", + "PhoneAreaCode" : "415" + } ], + "PaymentTerms" : { + "Bills" : { + "Day" : 15, + "Type" : "OFCURRENTMONTH" + }, + "Sales" : { + "Day" : 10, + "Type" : "DAYSAFTERBILLMONTH" + } + } + } ] + } } }, "required" : true @@ -44836,7 +45428,23 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/CreditNotes" }, - "example" : "{ \"CreditNotes\":[ { \"Type\":\"ACCPAYCREDIT\", \"Contact\":{ \"ContactID\":\"430fa14a-f945-44d3-9f97-5df5e28441b8\" }, \"Date\":\"2019-01-05\", \"Status\":\"AUTHORISED\", \"Reference\": \"HelloWorld\", \"LineItems\":[ { \"Description\":\"Foobar\", \"Quantity\":2.0, \"UnitAmount\":20.0, \"AccountCode\":\"400\" } ] } ] }" + "example" : { + "CreditNotes" : [ { + "Type" : "ACCPAYCREDIT", + "Contact" : { + "ContactID" : "430fa14a-f945-44d3-9f97-5df5e28441b8" + }, + "Date" : "2019-01-05", + "Status" : "AUTHORISED", + "Reference" : "HelloWorld", + "LineItems" : [ { + "Description" : "Foobar", + "Quantity" : 2.0, + "UnitAmount" : 20.0, + "AccountCode" : "400" + } ] + } ] + } } }, "required" : true @@ -45041,7 +45649,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Employees" }, - "example" : "{ \"Employees\": [ { \"FirstName\": \"Nick\", \"LastName\": \"Fury\", \"ExternalLink\": { \"Url\": \"http://twitter.com/#!/search/Nick+Fury\" } } ] }" + "example" : { + "Employees" : [ { + "FirstName" : "Nick", + "LastName" : "Fury", + "ExternalLink" : { + "Url" : "http://twitter.com/#!/search/Nick+Fury" + } + } ] + } } }, "required" : true @@ -45245,7 +45861,26 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Invoices" }, - "example" : "{ \"Invoices\": [ { \"Type\": \"ACCREC\", \"Contact\": { \"ContactID\": \"430fa14a-f945-44d3-9f97-5df5e28441b8\" }, \"LineItems\": [ { \"Description\": \"Acme Tires\", \"Quantity\": 2, \"UnitAmount\": 20, \"AccountCode\": \"200\", \"TaxType\": \"NONE\", \"LineAmount\": 40 } ], \"Date\": \"2019-03-11\", \"DueDate\": \"2018-12-10\", \"Reference\": \"Website Design\", \"Status\": \"AUTHORISED\" } ] }" + "example" : { + "Invoices" : [ { + "Type" : "ACCREC", + "Contact" : { + "ContactID" : "430fa14a-f945-44d3-9f97-5df5e28441b8" + }, + "LineItems" : [ { + "Description" : "Acme Tires", + "Quantity" : 2, + "UnitAmount" : 20, + "AccountCode" : "200", + "TaxType" : "NONE", + "LineAmount" : 40 + } ], + "Date" : "2019-03-11", + "DueDate" : "2018-12-10", + "Reference" : "Website Design", + "Status" : "AUTHORISED" + } ] + } } }, "required" : true @@ -45451,7 +46086,13 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Items" }, - "example" : "{ \"Items\": [ { \"Code\": \"ItemCode123\", \"Name\": \"ItemName XYZ\", \"Description\": \"Item Description ABC\" } ] }" + "example" : { + "Items" : [ { + "Code" : "ItemCode123", + "Name" : "ItemName XYZ", + "Description" : "Item Description ABC" + } ] + } } }, "required" : true @@ -45672,7 +46313,25 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/ManualJournals" }, - "example" : "{ \"ManualJournals\": [ { \"Narration\": \"Journal Desc\", \"JournalLines\": [ { \"LineAmount\": 100, \"AccountCode\": \"400\", \"Description\": \"Money Movement\" }, { \"LineAmount\": -100, \"AccountCode\": \"400\", \"Description\": \"Prepayment of things\", \"Tracking\": [ { \"Name\": \"North\", \"Option\": \"Region\" } ] } ], \"Date\": \"2019-03-14\" } ] }" + "example" : { + "ManualJournals" : [ { + "Narration" : "Journal Desc", + "JournalLines" : [ { + "LineAmount" : 100, + "AccountCode" : "400", + "Description" : "Money Movement" + }, { + "LineAmount" : -100, + "AccountCode" : "400", + "Description" : "Prepayment of things", + "Tracking" : [ { + "Name" : "North", + "Option" : "Region" + } ] + } ], + "Date" : "2019-03-14" + } ] + } } }, "required" : true @@ -45870,7 +46529,20 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PurchaseOrders" }, - "example" : "{ \"PurchaseOrders\": [ { \"Contact\": { \"ContactID\": \"00000000-0000-0000-0000-000000000000\" }, \"LineItems\": [ { \"Description\": \"Foobar\", \"Quantity\": 1, \"UnitAmount\": 20, \"AccountCode\": \"710\" } ], \"Date\": \"2019-03-13\" } ] }" + "example" : { + "PurchaseOrders" : [ { + "Contact" : { + "ContactID" : "00000000-0000-0000-0000-000000000000" + }, + "LineItems" : [ { + "Description" : "Foobar", + "Quantity" : 1, + "UnitAmount" : 20, + "AccountCode" : "710" + } ], + "Date" : "2019-03-13" + } ] + } } }, "required" : true @@ -46068,7 +46740,20 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Quotes" }, - "example" : "{ \"Quotes\": [ { \"Contact\": { \"ContactID\": \"00000000-0000-0000-0000-000000000000\" }, \"LineItems\": [ { \"Description\": \"Foobar\", \"Quantity\": 1, \"UnitAmount\": 20, \"AccountCode\": \"12775\" } ], \"Date\": \"2020-02-01\" } ] }" + "example" : { + "Quotes" : [ { + "Contact" : { + "ContactID" : "00000000-0000-0000-0000-000000000000" + }, + "LineItems" : [ { + "Description" : "Foobar", + "Quantity" : 1, + "UnitAmount" : 20, + "AccountCode" : "12775" + } ], + "Date" : "2020-02-01" + } ] + } } }, "required" : true @@ -46246,7 +46931,42 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/RepeatingInvoices" }, - "example" : "{ \"RepeatingInvoices\": [ { \"Schedule\": { \"Period\": 1, \"Unit\": \"MONTHLY\", \"DueDate\": 10, \"DueDateType\": \"OFFOLLOWINGMONTH\", \"StartDate\": \"\\/Date(1555286400000+0000)\\/\" }, \"Type\": \"ACCREC\", \"Reference\": \"[Week]\", \"ApprovedForSending\": false, \"SendCopy\": false, \"MarkAsSent\": false, \"IncludePDF\": false, \"Contact\": { \"ContactID\": \"430fa14a-f945-44d3-9f97-5df5e28441b8\", \"Name\": \"Liam Gallagher\" }, \"Status\": \"AUTHORISED\", \"LineAmountTypes\": \"Exclusive\", \"LineItems\": [ { \"Description\": \"Guitars Fender Strat\", \"UnitAmount\": 5000.00, \"TaxType\": \"OUTPUT2\", \"TaxAmount\": 750.00, \"LineAmount\": 5000.00, \"AccountCode\": \"200\", \"Tracking\": [], \"Quantity\": 1.0000, \"LineItemID\": \"13a8353c-d2af-4d5b-920c-438449f08900\", \"DiscountEnteredAsPercent\": true } ], \"CurrencyCode\": \"NZD\" } ] }" + "example" : { + "RepeatingInvoices" : [ { + "Schedule" : { + "Period" : 1, + "Unit" : "MONTHLY", + "DueDate" : 10, + "DueDateType" : "OFFOLLOWINGMONTH", + "StartDate" : "/Date(1555286400000+0000)/" + }, + "Type" : "ACCREC", + "Reference" : "[Week]", + "ApprovedForSending" : false, + "SendCopy" : false, + "MarkAsSent" : false, + "IncludePDF" : false, + "Contact" : { + "ContactID" : "430fa14a-f945-44d3-9f97-5df5e28441b8", + "Name" : "Liam Gallagher" + }, + "Status" : "AUTHORISED", + "LineAmountTypes" : "Exclusive", + "LineItems" : [ { + "Description" : "Guitars Fender Strat", + "UnitAmount" : 5000.0, + "TaxType" : "OUTPUT2", + "TaxAmount" : 750.0, + "LineAmount" : 5000.0, + "AccountCode" : "200", + "Tracking" : [ ], + "Quantity" : 1.0, + "LineItemID" : "13a8353c-d2af-4d5b-920c-438449f08900", + "DiscountEnteredAsPercent" : true + } ], + "CurrencyCode" : "NZD" + } ] + } } }, "required" : true @@ -46463,7 +47183,13 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PurchaseOrders" }, - "example" : "{ \"PurchaseOrders\": [ { \"AttentionTo\": \"Peter Parker\", \"LineItems\": [], \"Contact\": {} } ] }" + "example" : { + "PurchaseOrders" : [ { + "AttentionTo" : "Peter Parker", + "LineItems" : [ ], + "Contact" : { } + } ] + } } }, "required" : true @@ -46514,14 +47240,9 @@

Usage and SDK Samples

UUID purchaseOrderID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updatePurchaseOrderAttachmentByFileName(accessToken, xeroTenantId, purchaseOrderID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updatePurchaseOrderAttachmentByFileName(accessToken, xeroTenantId, purchaseOrderID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updatePurchaseOrderAttachmentByFileName"); @@ -46659,7 +47380,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -46676,7 +47397,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -46873,7 +47594,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Quotes" }, - "example" : "{ \"Quotes\": [ { \"Reference\": \"I am an update\", \"Contact\": { \"ContactID\": \"00000000-0000-0000-0000-000000000000\" }, \"Date\": \"2020-02-01\" } ] }" + "example" : { + "Quotes" : [ { + "Reference" : "I am an update", + "Contact" : { + "ContactID" : "00000000-0000-0000-0000-000000000000" + }, + "Date" : "2020-02-01" + } ] + } } }, "required" : true @@ -46924,14 +47653,9 @@

Usage and SDK Samples

UUID quoteID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updateQuoteAttachmentByFileName(accessToken, xeroTenantId, quoteID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updateQuoteAttachmentByFileName(accessToken, xeroTenantId, quoteID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updateQuoteAttachmentByFileName"); @@ -47069,7 +47793,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -47086,7 +47810,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -47284,7 +48008,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Receipts" }, - "example" : "{ \"Receipts\": [ { \"Lineitems\": [], \"User\": { \"UserID\": \"00000000-0000-0000-0000-000000000000\" }, \"Reference\": \"Foobar\" } ] }" + "example" : { + "Receipts" : [ { + "Lineitems" : [ ], + "User" : { + "UserID" : "00000000-0000-0000-0000-000000000000" + }, + "Reference" : "Foobar" + } ] + } } }, "required" : true @@ -47362,14 +48094,9 @@

Usage and SDK Samples

UUID receiptID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updateReceiptAttachmentByFileName(accessToken, xeroTenantId, receiptID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updateReceiptAttachmentByFileName(accessToken, xeroTenantId, receiptID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updateReceiptAttachmentByFileName"); @@ -47507,7 +48234,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -47524,7 +48251,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -47709,7 +48436,53 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/RepeatingInvoices" }, - "example" : "{ \"Schedule\": { \"Period\": 1, \"Unit\": \"MONTHLY\", \"DueDate\": 10, \"DueDateType\": \"OFFOLLOWINGMONTH\", \"StartDate\": \"\\/Date(1555286400000+0000)\\/\", \"EndDate\": \"\\/Date(1569801600000+0000)\\/\", \"NextScheduledDate\": \"\\/Date(1555286400000+0000)\\/\" }, \"RepeatingInvoiceID\": \"428c0d75-909f-4b04-8403-a48dc27283b0\", \"Type\": \"ACCREC\", \"Reference\": \"[Week]\", \"HasAttachments\": true, \"ApprovedForSending\": false, \"SendCopy\": false, \"MarkAsSent\": false, \"IncludePDF\": false, \"ID\": \"428c0d75-909f-4b04-8403-a48dc27283b0\", \"Contact\": { \"ContactID\": \"430fa14a-f945-44d3-9f97-5df5e28441b8\", \"Name\": \"Liam Gallagher\", \"Addresses\": [], \"Phones\": [], \"ContactGroups\": [], \"ContactPersons\": [], \"HasValidationErrors\": false }, \"Status\": \"DELETED\", \"LineAmountTypes\": \"Exclusive\", \"LineItems\": [ { \"Description\": \"Guitars Fender Strat\", \"UnitAmount\": 5000.00, \"TaxType\": \"OUTPUT2\", \"TaxAmount\": 750.00, \"LineAmount\": 5000.00, \"AccountCode\": \"200\", \"Tracking\": [], \"Quantity\": 1.0000, \"LineItemID\": \"13a8353c-d2af-4d5b-920c-438449f08900\", \"DiscountEnteredAsPercent\": true } ], \"SubTotal\": 5000.00, \"TotalTax\": 750.00, \"Total\": 5750.00, \"CurrencyCode\": \"NZD\" }" + "example" : { + "Schedule" : { + "Period" : 1, + "Unit" : "MONTHLY", + "DueDate" : 10, + "DueDateType" : "OFFOLLOWINGMONTH", + "StartDate" : "/Date(1555286400000+0000)/", + "EndDate" : "/Date(1569801600000+0000)/", + "NextScheduledDate" : "/Date(1555286400000+0000)/" + }, + "RepeatingInvoiceID" : "428c0d75-909f-4b04-8403-a48dc27283b0", + "Type" : "ACCREC", + "Reference" : "[Week]", + "HasAttachments" : true, + "ApprovedForSending" : false, + "SendCopy" : false, + "MarkAsSent" : false, + "IncludePDF" : false, + "ID" : "428c0d75-909f-4b04-8403-a48dc27283b0", + "Contact" : { + "ContactID" : "430fa14a-f945-44d3-9f97-5df5e28441b8", + "Name" : "Liam Gallagher", + "Addresses" : [ ], + "Phones" : [ ], + "ContactGroups" : [ ], + "ContactPersons" : [ ], + "HasValidationErrors" : false + }, + "Status" : "DELETED", + "LineAmountTypes" : "Exclusive", + "LineItems" : [ { + "Description" : "Guitars Fender Strat", + "UnitAmount" : 5000.0, + "TaxType" : "OUTPUT2", + "TaxAmount" : 750.0, + "LineAmount" : 5000.0, + "AccountCode" : "200", + "Tracking" : [ ], + "Quantity" : 1.0, + "LineItemID" : "13a8353c-d2af-4d5b-920c-438449f08900", + "DiscountEnteredAsPercent" : true + } ], + "SubTotal" : 5000.0, + "TotalTax" : 750.0, + "Total" : 5750.0, + "CurrencyCode" : "NZD" + } } }, "required" : true @@ -47760,14 +48533,9 @@

Usage and SDK Samples

UUID repeatingInvoiceID = '00000000-0000-0000-0000-000000000000'; String fileName = 'xero-dev.jpg'; String idempotencyKey = 'KEY_VALUE'; - - File input = new File("/path/to/local/xero-dev.jpg"); - java.nio.file.Path inputPath = input.toPath(); - byte[] body = FileUtils.readFileToByteArray(input); - String mimeType = Files.probeContentType(inputPath); try { - Attachments result = apiInstance.updateRepeatingInvoiceAttachmentByFileName(accessToken, xeroTenantId, repeatingInvoiceID, fileName, body, idempotencyKey, mimeType); + Attachments result = apiInstance.updateRepeatingInvoiceAttachmentByFileName(accessToken, xeroTenantId, repeatingInvoiceID, fileName, body, idempotencyKey); System.out.println(result); } catch (XeroException e) { System.err.println("Exception when calling AccountingApi#updateRepeatingInvoiceAttachmentByFileName"); @@ -47905,7 +48673,7 @@

Parameters

- byte[] + File
Byte array of file in body of request @@ -47922,7 +48690,7 @@

Parameters

"application/octet-stream" : { "schema" : { "type" : "string", - "format" : "byte" + "format" : "binary" } } }, @@ -48086,7 +48854,17 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/TaxRates" }, - "example" : "{ \"TaxRates\": [ { \"Name\": \"State Tax NY\", \"TaxComponents\": [ { \"Name\": \"State Tax\", \"Rate\": 2.25 } ], \"Status\": \"DELETED\", \"ReportTaxType\": \"INPUT\" } ] }" + "example" : { + "TaxRates" : [ { + "Name" : "State Tax NY", + "TaxComponents" : [ { + "Name" : "State Tax", + "Rate" : 2.25 + } ], + "Status" : "DELETED", + "ReportTaxType" : "INPUT" + } ] + } } }, "required" : true @@ -48273,7 +49051,9 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/TrackingCategory" }, - "example" : "{ \"Name\": \"Avengers\" }" + "example" : { + "Name" : "Avengers" + } } }, "required" : true @@ -48488,7 +49268,9 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/TrackingOption" }, - "example" : "{ name: \"Vision\" }" + "example" : { + "name" : "Vision" + } } }, "required" : true diff --git a/docs/v4/appstore/index.html b/docs/v4/appstore/index.html index 3f39be5d..6408b41d 100644 --- a/docs/v4/appstore/index.html +++ b/docs/v4/appstore/index.html @@ -1640,7 +1640,10 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/CreateUsageRecord" }, - "example" : "{ \"timestamp\": \"2022-01-21T13:01:00\", \"quantity\": 10 }" + "example" : { + "timestamp" : "2022-01-21T13:01:00", + "quantity" : 10 + } } }, "required" : true @@ -1857,7 +1860,9 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/UpdateUsageRecord" }, - "example" : "{ \"quantity\": 10 }" + "example" : { + "quantity" : 10 + } } }, "required" : true diff --git a/docs/v4/assets/index.html b/docs/v4/assets/index.html index d22ba9b3..6204e671 100644 --- a/docs/v4/assets/index.html +++ b/docs/v4/assets/index.html @@ -1028,7 +1028,6 @@ }; defs["BookDepreciationDetail"] = { "title" : "", - "required" : [ "name" ], "properties" : { "currentCapitalGain" : { "type" : "number", @@ -1082,7 +1081,6 @@ }; defs["BookDepreciationSetting"] = { "title" : "", - "required" : [ "name" ], "properties" : { "depreciationMethod" : { "type" : "string", @@ -1571,7 +1569,28 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Asset" }, - "example" : "{ \"assetName\":\"Computer74863\", \"assetNumber\":\"123477544\", \"purchaseDate\":\"2020-01-01\", \"purchasePrice\":100.0, \"disposalPrice\":23.23, \"assetStatus\":\"Draft\", \"bookDepreciationSetting\":{ \"depreciationMethod\":\"StraightLine\", \"averagingMethod\":\"ActualDays\", \"depreciationRate\":0.5, \"depreciationCalculationMethod\":\"None\" }, \"bookDepreciationDetail\":{ \"currentCapitalGain\":5.32, \"currentGainLoss\":3.88, \"depreciationStartDate\":\"2020-01-02\", \"costLimit\":100.0, \"currentAccumDepreciationAmount\":2.25 }, \"AccountingBookValue\":99.5 }" + "example" : { + "assetName" : "Computer74863", + "assetNumber" : "123477544", + "purchaseDate" : "2020-01-01", + "purchasePrice" : 100.0, + "disposalPrice" : 23.23, + "assetStatus" : "Draft", + "bookDepreciationSetting" : { + "depreciationMethod" : "StraightLine", + "averagingMethod" : "ActualDays", + "depreciationRate" : 0.5, + "depreciationCalculationMethod" : "None" + }, + "bookDepreciationDetail" : { + "currentCapitalGain" : 5.32, + "currentGainLoss" : 3.88, + "depreciationStartDate" : "2020-01-02", + "costLimit" : 100.0, + "currentAccumDepreciationAmount" : 2.25 + }, + "AccountingBookValue" : 99.5 + } } }, "required" : true @@ -1734,7 +1753,18 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/AssetType" }, - "example" : "{ \"assetTypeName\":\"Machinery11004\", \"fixedAssetAccountId\":\"3d8d063a-c148-4bb8-8b3c-a5e2ad3b1e82\", \"depreciationExpenseAccountId\":\"d1602f69-f900-4616-8d34-90af393fa368\", \"accumulatedDepreciationAccountId\":\"9195cadd-8645-41e6-9f67-7bcd421defe8\", \"bookDepreciationSetting\":{ \"depreciationMethod\":\"DiminishingValue100\", \"averagingMethod\":\"ActualDays\", \"depreciationRate\":0.05, \"depreciationCalculationMethod\":\"None\" } }" + "example" : { + "assetTypeName" : "Machinery11004", + "fixedAssetAccountId" : "3d8d063a-c148-4bb8-8b3c-a5e2ad3b1e82", + "depreciationExpenseAccountId" : "d1602f69-f900-4616-8d34-90af393fa368", + "accumulatedDepreciationAccountId" : "9195cadd-8645-41e6-9f67-7bcd421defe8", + "bookDepreciationSetting" : { + "depreciationMethod" : "DiminishingValue100", + "averagingMethod" : "ActualDays", + "depreciationRate" : 0.05, + "depreciationCalculationMethod" : "None" + } + } } }, "required" : true diff --git a/docs/v4/payroll-au/index.html b/docs/v4/payroll-au/index.html index f588e5d2..62bdacfa 100644 --- a/docs/v4/payroll-au/index.html +++ b/docs/v4/payroll-au/index.html @@ -4181,7 +4181,25 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PayItem" }, - "example" : "{ \"EarningsRates\": [ { \"Name\": \"MyRate\", \"AccountCode\": \"400\", \"TypeOfUnits\": \"4.00\", \"IsExemptFromTax\": true, \"IsExemptFromSuper\": true, \"IsReportableAsW1\": false, \"AllowanceContributesToAnnualLeaveRate\": false, \"AllowanceContributesToOvertimeRate\": false, \"EarningsType\": \"ORDINARYTIMEEARNINGS\", \"EarningsRateID\": \"1fa4e226-b711-46ba-a8a7-4344c9c5fb87\", \"RateType\": \"MULTIPLE\", \"RatePerUnit\": \"10.0\", \"Multiplier\": 1.5, \"Amount\": 5, \"EmploymentTerminationPaymentType\": \"O\" } ] }" + "example" : { + "EarningsRates" : [ { + "Name" : "MyRate", + "AccountCode" : "400", + "TypeOfUnits" : "4.00", + "IsExemptFromTax" : true, + "IsExemptFromSuper" : true, + "IsReportableAsW1" : false, + "AllowanceContributesToAnnualLeaveRate" : false, + "AllowanceContributesToOvertimeRate" : false, + "EarningsType" : "ORDINARYTIMEEARNINGS", + "EarningsRateID" : "1fa4e226-b711-46ba-a8a7-4344c9c5fb87", + "RateType" : "MULTIPLE", + "RatePerUnit" : "10.0", + "Multiplier" : 1.5, + "Amount" : 5, + "EmploymentTerminationPaymentType" : "O" + } ] + } } }, "required" : true @@ -8453,7 +8471,16 @@

Parameters

"$ref" : "#/components/schemas/PayslipLines" } }, - "example" : "{ \"Payslip\": { \"EmployeeID\": \"cdfb8371-0b21-4b8a-8903-1024df6c391e\", \"DeductionLines\": [ { \"DeductionTypeID\": \"727af5e8-b347-4ae7-85fc-9b82266d0aec\", \"CalculationType\": \"FIXEDAMOUNT\", \"NumberOfUnits\": 10 } ] } }" + "example" : { + "Payslip" : { + "EmployeeID" : "cdfb8371-0b21-4b8a-8903-1024df6c391e", + "DeductionLines" : [ { + "DeductionTypeID" : "727af5e8-b347-4ae7-85fc-9b82266d0aec", + "CalculationType" : "FIXEDAMOUNT", + "NumberOfUnits" : 10 + } ] + } + } } }, "required" : true diff --git a/docs/v4/payroll-nz/index.html b/docs/v4/payroll-nz/index.html index c5906753..a23f62bf 100644 --- a/docs/v4/payroll-nz/index.html +++ b/docs/v4/payroll-nz/index.html @@ -1046,7 +1046,7 @@ }; defs["Deduction"] = { "title" : "", - "required" : [ "calculationType", "deductionCategory", "deductionName", "liabilityAccountId" ], + "required" : [ "deductionCategory", "deductionName", "liabilityAccountId" ], "type" : "object", "properties" : { "deductionId" : { @@ -1420,7 +1420,7 @@ }; defs["Employee"] = { "title" : "", - "required" : [ "Address", "DateOfBirth", "FirstName", "LastName" ], + "required" : [ "address", "dateOfBirth", "firstName", "lastName" ], "type" : "object", "properties" : { "employeeID" : { @@ -2426,7 +2426,7 @@ }; defs["Employment"] = { "title" : "", - "required" : [ "EngagementType", "PayrollCalendarID", "StartDate" ], + "required" : [ "engagementType", "payrollCalendarID", "startDate" ], "type" : "object", "properties" : { "payrollCalendarID" : { @@ -4555,7 +4555,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Deduction" }, - "example" : "{ \"deductionName\": \"My new deduction\", \"deductionCategory\": \"NzOther\", \"liabilityAccountId\": \"568f2e9a-0870-46cc-8678-f83f132ed4e3\" }" + "example" : { + "deductionName" : "My new deduction", + "deductionCategory" : "NzOther", + "liabilityAccountId" : "568f2e9a-0870-46cc-8678-f83f132ed4e3" + } } }, "required" : true @@ -4709,7 +4713,13 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EarningsRate" }, - "example" : "{ \"name\": \"My Earnings Rate\", \"earningsType\": \"RegularEarnings\", \"rateType\": \"RatePerUnit\", \"typeOfUnits\": \"hours\", \"expenseAccountID\": \"e4eb36f6-97e3-4427-a394-dd4e1b355c2e\" }" + "example" : { + "name" : "My Earnings Rate", + "earningsType" : "RegularEarnings", + "rateType" : "RatePerUnit", + "typeOfUnits" : "hours", + "expenseAccountID" : "e4eb36f6-97e3-4427-a394-dd4e1b355c2e" + } } }, "required" : true @@ -4871,7 +4881,20 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Employee" }, - "example" : "{ \"title\": \"Mr\", \"firstName\": \"Mike\", \"lastName\": \"Johntzxzpxhmkgson\", \"dateOfBirth\": \"2000-01-01\", \"address\": { \"addressLine1\": \"101 Green St\", \"city\": \"San Francisco\", \"postCode\": \"4351\", \"countryName\": \"United Kingdom\" }, \"email\": \"83139@starkindustries.com\", \"gender\": \"M\" }" + "example" : { + "title" : "Mr", + "firstName" : "Mike", + "lastName" : "Johntzxzpxhmkgson", + "dateOfBirth" : "2000-01-01", + "address" : { + "addressLine1" : "101 Green St", + "city" : "San Francisco", + "postCode" : "4351", + "countryName" : "United Kingdom" + }, + "email" : "83139@starkindustries.com", + "gender" : "M" + } } }, "required" : true @@ -5066,7 +5089,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EarningsTemplate" }, - "example" : "{ \"ratePerUnit\": 20, \"numberOfUnits\": 8, \"earningsRateID\": \"f9d8f5b5-9049-47f4-8541-35e200f750a5\", \"name\": \"My New One\" }" + "example" : { + "ratePerUnit" : 20, + "numberOfUnits" : 8, + "earningsRateID" : "f9d8f5b5-9049-47f4-8541-35e200f750a5", + "name" : "My New One" + } } }, "required" : true @@ -5259,7 +5287,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeLeave" }, - "example" : "{ \"leaveTypeID\": \"b0b1b79e-2a25-46c2-ad08-ca25ef48d7e4\", \"description\": \"Creating a Description\", \"startDate\": \"2020-04-24\", \"endDate\": \"2020-04-26\" }" + "example" : { + "leaveTypeID" : "b0b1b79e-2a25-46c2-ad08-ca25ef48d7e4", + "description" : "Creating a Description", + "startDate" : "2020-04-24", + "endDate" : "2020-04-26" + } } }, "required" : true @@ -5456,7 +5489,16 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeLeaveSetup" }, - "example" : "{ \"holidayPayOpeningBalance\": 10, \"annualLeaveOpeningBalance\": 100, \"sickLeaveHoursToAccrueAnnually\": 20, \"sickLeaveToAccrueAnnually\": 20, \"sickLeaveOpeningBalance\": 10, \"sickLeaveScheduleOfAccrual\": \"OnAnniversaryDate\", \"sickLeaveAnniversaryDate\": \"2023-12-31\", \"annualLeaveAnniversaryDate\": \"2023-12-31\" }" + "example" : { + "holidayPayOpeningBalance" : 10, + "annualLeaveOpeningBalance" : 100, + "sickLeaveHoursToAccrueAnnually" : 20, + "sickLeaveToAccrueAnnually" : 20, + "sickLeaveOpeningBalance" : 10, + "sickLeaveScheduleOfAccrual" : "OnAnniversaryDate", + "sickLeaveAnniversaryDate" : "2023-12-31", + "annualLeaveAnniversaryDate" : "2023-12-31" + } } }, "required" : true @@ -5646,7 +5688,17 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeLeaveType" }, - "example" : "{ \"leaveTypeID\": \"35da97ae-05b9-427f-9a98-69157ba42cec\", \"scheduleOfAccrual\": \"AnnuallyAfter6Months\", \"hoursAccruedAnnually\": 10, \"unitsAccruedAnnually\": 10, \"typeOfUnitsToAccrue\": \"Hours\", \"openingBalanceTypeOfUnits\": \"Hours\" \"maximumToAccrue\": 80, \"openingBalance\": 100, \"rateAccruedHourly\": 3.5 }" + "example" : { + "leaveTypeID" : "35da97ae-05b9-427f-9a98-69157ba42cec", + "scheduleOfAccrual" : "AnnuallyAfter6Months", + "hoursAccruedAnnually" : 10, + "unitsAccruedAnnually" : 10, + "typeOfUnitsToAccrue" : "Hours", + "openingBalanceTypeOfUnits" : "Hours", + "maximumToAccrue" : 80, + "openingBalance" : 100, + "rateAccruedHourly" : 3.5 + } } }, "required" : true @@ -6035,7 +6087,18 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PaymentMethod" }, - "example" : "" + "example" : { + "bankAccounts" : [ { + "accountName" : "Casual Worker", + "accountNumber" : "0607050201419000", + "sortCode" : null, + "particulars" : null, + "code" : null, + "dollarAmount" : null, + "reference" : "", + "calculationType" : "Balance" + } ] + } } }, "required" : true @@ -6225,7 +6288,17 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/SalaryAndWage" }, - "example" : "{ \"earningsRateID\": \"f9d8f5b5-9049-47f4-8541-35e200f750a5\", \"numberOfUnitsPerWeek\": 2, \"ratePerUnit\": 10, \"numberOfUnitsPerDay\": 2, \"daysPerWeek\": 1, \"effectiveFrom\": \"2020-05-01\", \"annualSalary\": 100, \"status\": \"Active\", \"paymentType\": \"Salary\" }" + "example" : { + "earningsRateID" : "f9d8f5b5-9049-47f4-8541-35e200f750a5", + "numberOfUnitsPerWeek" : 2, + "ratePerUnit" : 10, + "numberOfUnitsPerDay" : 2, + "daysPerWeek" : 1, + "effectiveFrom" : "2020-05-01", + "annualSalary" : 100, + "status" : "Active", + "paymentType" : "Salary" + } } }, "required" : true @@ -6419,7 +6492,18 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeWorkingPatternWithWorkingWeeksRequest" }, - "example" : "{ \"effectiveFrom\": \"2020-01-01T00:00:00\", \"workingWeeks\": [ { \"monday\": 0.0, \"tuesday\": 3.0000, \"wednesday\": 0.0, \"thursday\": 0.0, \"friday\": 0.0, \"saturday\": 0.0, \"sunday\": 0.0 } ] }" + "example" : { + "effectiveFrom" : "2020-01-01T00:00:00", + "workingWeeks" : [ { + "monday" : 0.0, + "tuesday" : 3.0, + "wednesday" : 0.0, + "thursday" : 0.0, + "friday" : 0.0, + "saturday" : 0.0, + "sunday" : 0.0 + } ] + } } }, "required" : true @@ -6610,7 +6694,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Employment" }, - "example" : "{ \"payrollCalendarID\": \"9aa56064-990f-4ad3-a189-d966d8f6a030\", \"startDate\": \"2020-09-02\", \"engagementType\": \"FixedTerm\", \"fixedTermEndDate\": \"2026-01-01\" }" + "example" : { + "payrollCalendarID" : "9aa56064-990f-4ad3-a189-d966d8f6a030", + "startDate" : "2020-09-02", + "engagementType" : "FixedTerm", + "fixedTermEndDate" : "2026-01-01" + } } }, "required" : true @@ -6764,7 +6853,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/LeaveType" }, - "example" : "{ \"name\": \"My wqwhhiktun Leave\", \"isPaidLeave\": false, \"showOnPayslip\": true }" + "example" : { + "name" : "My wqwhhiktun Leave", + "isPaidLeave" : false, + "showOnPayslip" : true + } } }, "required" : true @@ -7112,7 +7205,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PayRun" }, - "example" : "{ \"payrollCalendarID\": \"9aa56064-990f-4ad3-a189-d966d8f6a030\", \"periodStartDate\": \"2020-09-08\", \"periodEndDate\": \"2020-09-15\", \"paymentDate\": \"2020-09-20\", \"payRunStatus\": \"Draft\", \"payRunType\": \"Scheduled\", \"calendarType\": \"Weekly\" }" + "example" : { + "payrollCalendarID" : "9aa56064-990f-4ad3-a189-d966d8f6a030", + "periodStartDate" : "2020-09-08", + "periodEndDate" : "2020-09-15", + "paymentDate" : "2020-09-20", + "payRunStatus" : "Draft", + "payRunType" : "Scheduled", + "calendarType" : "Weekly" + } } }, "required" : true @@ -7268,7 +7369,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PayRunCalendar" }, - "example" : "{ \"name\": \"My Weekly Cal\", \"calendarType\": \"Weekly\", \"periodStartDate\": \"2020-05-01\", \"paymentDate\": \"2020-05-15\" }" + "example" : { + "name" : "My Weekly Cal", + "calendarType" : "Weekly", + "periodStartDate" : "2020-05-01", + "paymentDate" : "2020-05-15" + } } }, "required" : true @@ -7423,7 +7529,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Reimbursement" }, - "example" : "{ \"name\": \"My new Reimburse\", \"accountID\": \"fa5cdc43-643b-4ad8-b4ac-3ffe0d0f4488\", \"reimbursementCategory\": \"GSTInclusive\", \"calculationType\": \"FixedAmount\" }" + "example" : { + "name" : "My new Reimburse", + "accountID" : "fa5cdc43-643b-4ad8-b4ac-3ffe0d0f4488", + "reimbursementCategory" : "GSTInclusive", + "calculationType" : "FixedAmount" + } } }, "required" : true @@ -7580,7 +7691,14 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Benefit" }, - "example" : "{ \"name\": \"SidSaver\", \"category\": \"Other\", \"liabilityAccountId\": \"568f2e9a-0870-46cc-8678-f83f132ed4e3\", \"expenseAccountId\": \"e4eb36f6-97e3-4427-a394-dd4e1b355c2e\", \"CalculationTypeNZ\": \"FixedAmount\", \"standardAmount\": 10 }" + "example" : { + "name" : "SidSaver", + "category" : "Other", + "liabilityAccountId" : "568f2e9a-0870-46cc-8678-f83f132ed4e3", + "expenseAccountId" : "e4eb36f6-97e3-4427-a394-dd4e1b355c2e", + "CalculationTypeNZ" : "FixedAmount", + "standardAmount" : 10 + } } }, "required" : true @@ -7737,7 +7855,21 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Timesheet" }, - "example" : "{ \"payrollCalendarID\": \"9aa56064-990f-4ad3-a189-d966d8f6a030\", \"employeeID\": \"68342973-c405-4b86-b5d3-d7b877c27995\", \"startDate\": \"2020-04-13\", \"endDate\": \"2020-04-19\", \"timesheetLines\": [ { \"date\": \"2020-04-13\", \"earningsRateID\": \"f9d8f5b5-9049-47f4-8541-35e200f750a5\", \"numberOfUnits\": 8 }, { \"date\": \"2020-04-15\", \"earningsRateID\": \"f9d8f5b5-9049-47f4-8541-35e200f750a5\", \"numberOfUnits\": 6 } ] }" + "example" : { + "payrollCalendarID" : "9aa56064-990f-4ad3-a189-d966d8f6a030", + "employeeID" : "68342973-c405-4b86-b5d3-d7b877c27995", + "startDate" : "2020-04-13", + "endDate" : "2020-04-19", + "timesheetLines" : [ { + "date" : "2020-04-13", + "earningsRateID" : "f9d8f5b5-9049-47f4-8541-35e200f750a5", + "numberOfUnits" : 8 + }, { + "date" : "2020-04-15", + "earningsRateID" : "f9d8f5b5-9049-47f4-8541-35e200f750a5", + "numberOfUnits" : 6 + } ] + } } }, "required" : true @@ -7929,7 +8061,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/TimesheetLine" }, - "example" : "{ \"date\": \"2020-08-03\", \"earningsRateID\": \"f9d8f5b5-9049-47f4-8541-35e200f750a5\", \"numberOfUnits\": 1 }" + "example" : { + "date" : "2020-08-03", + "earningsRateID" : "f9d8f5b5-9049-47f4-8541-35e200f750a5", + "numberOfUnits" : 1 + } } }, "required" : true @@ -14116,7 +14252,20 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Employee" }, - "example" : "{ \"title\": \"Mr\", \"firstName\": \"Tony\", \"lastName\": \"Starkgtrzgquusrson\", \"dateOfBirth\": \"1999-01-01\", \"address\": { \"addressLine1\": \"101 Green St\", \"city\": \"San Francisco\", \"postCode\": \"4432\", \"countryName\": \"United Kingdom\" }, \"email\": \"58315@starkindustries.com\", \"gender\": \"M\" }" + "example" : { + "title" : "Mr", + "firstName" : "Tony", + "lastName" : "Starkgtrzgquusrson", + "dateOfBirth" : "1999-01-01", + "address" : { + "addressLine1" : "101 Green St", + "city" : "San Francisco", + "postCode" : "4432", + "countryName" : "United Kingdom" + }, + "email" : "58315@starkindustries.com", + "gender" : "M" + } } }, "required" : true @@ -14339,7 +14488,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EarningsTemplate" }, - "example" : "{ \"ratePerUnit\": 25, \"numberOfUnits\": 4, \"earningsRateID\": \"f9d8f5b5-9049-47f4-8541-35e200f750a5\" }" + "example" : { + "ratePerUnit" : 25, + "numberOfUnits" : 4, + "earningsRateID" : "f9d8f5b5-9049-47f4-8541-35e200f750a5" + } } }, "required" : true @@ -14558,7 +14711,18 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeLeave" }, - "example" : "{ \"leaveTypeID\": \"b0b1b79e-2a25-46c2-ad08-ca25ef48d7e4\", \"description\": \"Creating a Description\", \"startDate\": \"2020-04-24\", \"endDate\": \"2020-04-26\", \"periods\": [ { \"periodStartDate\": \"2020-04-20\", \"periodEndDate\": \"2020-04-26\", \"numberOfUnits\": 1, \"periodStatus\": \"Approved\" } ] }" + "example" : { + "leaveTypeID" : "b0b1b79e-2a25-46c2-ad08-ca25ef48d7e4", + "description" : "Creating a Description", + "startDate" : "2020-04-24", + "endDate" : "2020-04-26", + "periods" : [ { + "periodStartDate" : "2020-04-20", + "periodEndDate" : "2020-04-26", + "numberOfUnits" : 1, + "periodStatus" : "Approved" + } ] + } } }, "required" : true @@ -14776,7 +14940,17 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/SalaryAndWage" }, - "example" : "{ \"earningsRateID\": \"f9d8f5b5-9049-47f4-8541-35e200f750a5\", \"numberOfUnitsPerWeek\": 3, \"ratePerUnit\": 11, \"numberOfUnitsPerDay\": 3, \"daysPerWeek\": 1, \"effectiveFrom\": \"2020-05-15\", \"annualSalary\": 101, \"status\": \"Active\", \"paymentType\": \"Salary\" }" + "example" : { + "earningsRateID" : "f9d8f5b5-9049-47f4-8541-35e200f750a5", + "numberOfUnitsPerWeek" : 3, + "ratePerUnit" : 11, + "numberOfUnitsPerDay" : 3, + "daysPerWeek" : 1, + "effectiveFrom" : "2020-05-15", + "annualSalary" : 101, + "status" : "Active", + "paymentType" : "Salary" + } } }, "required" : true @@ -14975,7 +15149,24 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeTax" }, - "example" : "" + "example" : { + "irdNumber" : "111111111", + "taxCode" : "M", + "esctRatePercentage" : 17.5, + "isEligibleForKiwiSaver" : true, + "hasSpecialStudentLoanRate" : false, + "specialStudentLoanRatePercentage" : null, + "specialTaxRatePercentage" : null, + "kiwiSaverContributions" : "MakeContributions", + "kiwiSaverOptOutDate" : null, + "kiwiSaverContributionHolidayEndDate" : null, + "kiwiSaverEmployeeContributionRatePercentage" : 3, + "kiwiSaverEmployerContributionRatePercentage" : 3, + "kiwiSaverEmployerSalarySacrificeContributionRatePercentage" : 0, + "hasStudentLoanBalance" : false, + "studentLoanBalance" : null, + "studentLoanAsAt" : null + } } }, "required" : true @@ -15166,7 +15357,9 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PayRun" }, - "example" : "{ \"paymentDate\": \"2019-07-01\" }" + "example" : { + "paymentDate" : "2019-07-01" + } } }, "required" : true @@ -15364,7 +15557,81 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PaySlip" }, - "example" : "{ \"earningsLines\": [ { \"earningsLineID\": \"f9d8f5b5-9049-47f4-8541-35e200f750a5\", \"earningsRateID\": \"f9d8f5b5-9049-47f4-8541-35e200f750a5\", \"displayName\": \"Ordinary Time\", \"ratePerUnit\": 25, \"numberOfUnits\": 0, \"amount\": 0, \"isLinkedToTimesheet\": false, \"isSystemGenerated\": true }, { \"earningsLineID\": \"65b83d94-f20f-45e1-85ae-387fcf460c26\", \"earningsRateID\": \"65b83d94-f20f-45e1-85ae-387fcf460c26\", \"displayName\": \"Salary\", \"ratePerUnit\": 0, \"numberOfUnits\": 8, \"amount\": 0, \"isLinkedToTimesheet\": false, \"isSystemGenerated\": false } ], \"leaveEarningsLines\": [ { \"earningsLineID\": \"0441497f-5dc7-4cd3-a90d-f2e07e21b2a6\", \"earningsRateID\": \"39b3560a-5d2f-4538-924a-4349dc86396e\", \"displayName\": \"Holiday Pay\", \"fixedAmount\": 268.8, \"amount\": 268.8, \"isLinkedToTimesheet\": false, \"isSystemGenerated\": true } ], \"deductionLines\": [ { \"deductionTypeID\": \"a3760fe4-68a4-4e38-8326-fe616af7dc74\", \"amount\": 100 } ], \"leaveAccrualLines\": [ { \"leaveTypeID\": \"0441497f-5dc7-4cd3-a90d-f2e07e21b2a6\", \"numberOfUnits\": 268.8 }, { \"leaveTypeID\": \"b0b1b79e-2a25-46c2-ad08-ca25ef48d7e4\", \"numberOfUnits\": 0 }, { \"leaveTypeID\": \"f2f994cf-1899-46f3-ad4f-5d92d78c3719\", \"numberOfUnits\": 0 }, { \"leaveTypeID\": \"34129765-11cb-4d8c-b568-84a2219beda3\", \"numberOfUnits\": 0 } ], \"superannuationLines\": [ { \"superannuationTypeID\": \"563273ea-0dae-4f82-86a4-e0db77c008ea\", \"displayName\": \"KiwiSaver\", \"amount\": 108.86, \"fixedAmount\": 3, \"percentage\": 3, \"manualAdjustment\": false } ], \"employeeTaxLines\": [ { \"taxLineID\": \"1084146b-e890-489c-aed3-06de80f63d84\", \"amount\": 1057.22, \"globalTaxTypeID\": \"11\", \"manualAdjustment\": false } ], \"employerTaxLines\": [ { \"taxLineID\": \"6f9eb8cd-0f4a-440b-939c-bdb0f6ad694c\", \"amount\": 18.9, \"globalTaxTypeID\": \"10\", \"manualAdjustment\": false } ], \"statutoryDeductionLines\": [ { \"statutoryDeductionTypeID\": \"b5efd8d1-0c93-4a14-a314-b5cba4a4e6b3\", \"amount\": 108.86 } ], \"grossEarningsHistory\": { \"daysPaid\": 3, \"unpaidWeeks\": 0 } }" + "example" : { + "earningsLines" : [ { + "earningsLineID" : "f9d8f5b5-9049-47f4-8541-35e200f750a5", + "earningsRateID" : "f9d8f5b5-9049-47f4-8541-35e200f750a5", + "displayName" : "Ordinary Time", + "ratePerUnit" : 25, + "numberOfUnits" : 0, + "amount" : 0, + "isLinkedToTimesheet" : false, + "isSystemGenerated" : true + }, { + "earningsLineID" : "65b83d94-f20f-45e1-85ae-387fcf460c26", + "earningsRateID" : "65b83d94-f20f-45e1-85ae-387fcf460c26", + "displayName" : "Salary", + "ratePerUnit" : 0, + "numberOfUnits" : 8, + "amount" : 0, + "isLinkedToTimesheet" : false, + "isSystemGenerated" : false + } ], + "leaveEarningsLines" : [ { + "earningsLineID" : "0441497f-5dc7-4cd3-a90d-f2e07e21b2a6", + "earningsRateID" : "39b3560a-5d2f-4538-924a-4349dc86396e", + "displayName" : "Holiday Pay", + "fixedAmount" : 268.8, + "amount" : 268.8, + "isLinkedToTimesheet" : false, + "isSystemGenerated" : true + } ], + "deductionLines" : [ { + "deductionTypeID" : "a3760fe4-68a4-4e38-8326-fe616af7dc74", + "amount" : 100 + } ], + "leaveAccrualLines" : [ { + "leaveTypeID" : "0441497f-5dc7-4cd3-a90d-f2e07e21b2a6", + "numberOfUnits" : 268.8 + }, { + "leaveTypeID" : "b0b1b79e-2a25-46c2-ad08-ca25ef48d7e4", + "numberOfUnits" : 0 + }, { + "leaveTypeID" : "f2f994cf-1899-46f3-ad4f-5d92d78c3719", + "numberOfUnits" : 0 + }, { + "leaveTypeID" : "34129765-11cb-4d8c-b568-84a2219beda3", + "numberOfUnits" : 0 + } ], + "superannuationLines" : [ { + "superannuationTypeID" : "563273ea-0dae-4f82-86a4-e0db77c008ea", + "displayName" : "KiwiSaver", + "amount" : 108.86, + "fixedAmount" : 3, + "percentage" : 3, + "manualAdjustment" : false + } ], + "employeeTaxLines" : [ { + "taxLineID" : "1084146b-e890-489c-aed3-06de80f63d84", + "amount" : 1057.22, + "globalTaxTypeID" : "11", + "manualAdjustment" : false + } ], + "employerTaxLines" : [ { + "taxLineID" : "6f9eb8cd-0f4a-440b-939c-bdb0f6ad694c", + "amount" : 18.9, + "globalTaxTypeID" : "10", + "manualAdjustment" : false + } ], + "statutoryDeductionLines" : [ { + "statutoryDeductionTypeID" : "b5efd8d1-0c93-4a14-a314-b5cba4a4e6b3", + "amount" : 108.86 + } ], + "grossEarningsHistory" : { + "daysPaid" : 3, + "unpaidWeeks" : 0 + } + } } }, "required" : true @@ -15584,7 +15851,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/TimesheetLine" }, - "example" : "{ \"date\": \"2020-08-04\", \"earningsRateID\": \"f9d8f5b5-9049-47f4-8541-35e200f750a5\", \"numberOfUnits\": 2 }" + "example" : { + "date" : "2020-08-04", + "earningsRateID" : "f9d8f5b5-9049-47f4-8541-35e200f750a5", + "numberOfUnits" : 2 + } } }, "required" : true diff --git a/docs/v4/payroll-uk/index.html b/docs/v4/payroll-uk/index.html index e55f2b57..525b190f 100644 --- a/docs/v4/payroll-uk/index.html +++ b/docs/v4/payroll-uk/index.html @@ -1512,7 +1512,7 @@ }; defs["Employee"] = { "title" : "", - "required" : [ "Address", "DateOfBirth", "FirstName", "Gender", "LastName", "Title" ], + "required" : [ "address", "dateOfBirth", "firstName", "gender", "lastName", "title" ], "type" : "object", "properties" : { "employeeID" : { @@ -2260,7 +2260,7 @@ }; defs["Employment"] = { "title" : "", - "required" : [ "EmployeeNumber", "NICategory", "PayrollCalendarID", "StartDate" ], + "required" : [ "employeeNumber", "niCategory", "payrollCalendarID", "startDate" ], "type" : "object", "properties" : { "payrollCalendarID" : { @@ -4036,7 +4036,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Benefit" }, - "example" : "{ \"name\": \"My Big Bennie\", \"category\": \"StakeholderPension\", \"liabilityAccountId\": \"e0faa299-ca0d-4b0a-9e32-0dfabdf9179a\", \"expenseAccountId\": \"4b03500d-32fd-4616-8d70-e1e56e0519c6\", \"standardAmount\": 50, \"percentage\": 25, \"calculationType\": \"PercentageOfGross\" }" + "example" : { + "name" : "My Big Bennie", + "category" : "StakeholderPension", + "liabilityAccountId" : "e0faa299-ca0d-4b0a-9e32-0dfabdf9179a", + "expenseAccountId" : "4b03500d-32fd-4616-8d70-e1e56e0519c6", + "standardAmount" : 50, + "percentage" : 25, + "calculationType" : "PercentageOfGross" + } } }, "required" : true @@ -4191,7 +4199,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Deduction" }, - "example" : "{ \"deductionName\": \"My new deduction\", \"deductionCategory\": \"SalarySacrifice\", \"liabilityAccountId\": \"e0faa299-ca0d-4b0a-9e32-0dfabdf9179a\", \"calculationType\": \"FixedAmount\" }" + "example" : { + "deductionName" : "My new deduction", + "deductionCategory" : "SalarySacrifice", + "liabilityAccountId" : "e0faa299-ca0d-4b0a-9e32-0dfabdf9179a", + "calculationType" : "FixedAmount" + } } }, "required" : true @@ -4346,7 +4359,13 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EarningsRate" }, - "example" : "{ \"name\": \"My Earnings Rate\", \"earningsType\": \"RegularEarnings\", \"rateType\": \"RatePerUnit\", \"typeOfUnits\": \"hours\", \"expenseAccountID\": \"4b03500d-32fd-4616-8d70-e1e56e0519c6\" }" + "example" : { + "name" : "My Earnings Rate", + "earningsType" : "RegularEarnings", + "rateType" : "RatePerUnit", + "typeOfUnits" : "hours", + "expenseAccountID" : "4b03500d-32fd-4616-8d70-e1e56e0519c6" + } } }, "required" : true @@ -4508,7 +4527,20 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Employee" }, - "example" : "{ \"title\":\"Mr\", \"firstName\":\"Mike\", \"lastName\":\"Fancy\", \"dateOfBirth\":\"1999-01-01T00:00:00\", \"gender\":\"M\", \"email\":\"mike@starkindustries.com\", \"isOffPayrollWorker\": false, \"address\": { \"addressLine1\": \"171 Midsummer\", \"city\": \"Milton Keyness\", \"postCode\": \"MK9 1EB\" } }" + "example" : { + "title" : "Mr", + "firstName" : "Mike", + "lastName" : "Fancy", + "dateOfBirth" : "1999-01-01T00:00:00", + "gender" : "M", + "email" : "mike@starkindustries.com", + "isOffPayrollWorker" : false, + "address" : { + "addressLine1" : "171 Midsummer", + "city" : "Milton Keyness", + "postCode" : "MK9 1EB" + } + } } }, "required" : true @@ -4893,7 +4925,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeLeave" }, - "example" : "{ \"leaveTypeID\": \"1d2778ee-86ea-45c0-bbf8-1045485f6b3f\", \"description\": \"Creating a Description\", \"startDate\": \"2020-03-24\", \"endDate\": \"2020-03-26\" }" + "example" : { + "leaveTypeID" : "1d2778ee-86ea-45c0-bbf8-1045485f6b3f", + "description" : "Creating a Description", + "startDate" : "2020-03-24", + "endDate" : "2020-03-26" + } } }, "required" : true @@ -5083,7 +5120,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeLeaveType" }, - "example" : "{ \"leaveTypeID\": \"4918f233-bd31-43f9-9633-bcc6de1178f2\", \"scheduleOfAccrual\": \"BeginningOfCalendarYear\", \"hoursAccruedAnnually\": 10 }" + "example" : { + "leaveTypeID" : "4918f233-bd31-43f9-9633-bcc6de1178f2", + "scheduleOfAccrual" : "BeginningOfCalendarYear", + "hoursAccruedAnnually" : 10 + } } }, "required" : true @@ -5274,7 +5315,14 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeOpeningBalances" }, - "example" : "{ \"statutoryAdoptionPay\": 10, \"statutoryMaternityPay\": 10, \"statutoryPaternityPay\": 10, \"statutorySharedParentalPay\": 10, \"statutorySickPay\": 10, \"priorEmployeeNumber\": 10 }" + "example" : { + "statutoryAdoptionPay" : 10, + "statutoryMaternityPay" : 10, + "statutoryPaternityPay" : 10, + "statutorySharedParentalPay" : 10, + "statutorySickPay" : 10, + "priorEmployeeNumber" : 10 + } } }, "required" : true @@ -5469,7 +5517,14 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PaymentMethod" }, - "example" : "{ \"paymentMethod\": \"Electronically\", \"bankAccounts\": [ { \"accountName\": \"Sid BofA\", \"accountNumber\": \"24987654\", \"sortCode\": \"287654\" } ] }" + "example" : { + "paymentMethod" : "Electronically", + "bankAccounts" : [ { + "accountName" : "Sid BofA", + "accountNumber" : "24987654", + "sortCode" : "287654" + } ] + } } }, "required" : true @@ -5660,7 +5715,16 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/SalaryAndWage" }, - "example" : "{ \"earningsRateID\": \"87f5b43a-cf51-4b74-92de-94c819e82d27\", \"numberOfUnitsPerWeek\": 2, \"ratePerUnit\": 10, \"numberOfUnitsPerDay\": 2, \"effectiveFrom\": \"2020-05-01\", \"annualSalary\": 100, \"status\": \"ACTIVE\", \"paymentType\": \"Salary\" }" + "example" : { + "earningsRateID" : "87f5b43a-cf51-4b74-92de-94c819e82d27", + "numberOfUnitsPerWeek" : 2, + "ratePerUnit" : 10, + "numberOfUnitsPerDay" : 2, + "effectiveFrom" : "2020-05-01", + "annualSalary" : 100, + "status" : "ACTIVE", + "paymentType" : "Salary" + } } }, "required" : true @@ -5817,7 +5881,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeStatutorySickLeave" }, - "example" : "{ \"employeeID\": \"aad6b292-7b94-408b-93f6-e489867e3fb0\", \"leaveTypeID\": \"aab78802-e9d3-4bbd-bc87-df858054988f\", \"startDate\": \"2020-04-21\", \"endDate\": \"2020-04-24\", \"workPattern\": [ \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\" ], \"isPregnancyRelated\": false, \"sufficientNotice\": true }" + "example" : { + "employeeID" : "aad6b292-7b94-408b-93f6-e489867e3fb0", + "leaveTypeID" : "aab78802-e9d3-4bbd-bc87-df858054988f", + "startDate" : "2020-04-21", + "endDate" : "2020-04-24", + "workPattern" : [ "Monday", "Tuesday", "Wednesday", "Thursday", "Friday" ], + "isPregnancyRelated" : false, + "sufficientNotice" : true + } } }, "required" : true @@ -6006,7 +6078,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Employment" }, - "example" : "{ \"PayrollCalendarID\": \"216d80e6-af55-47b1-b718-9457c3f5d2fe\", \"StartDate\": \"2020-04-01\", \"EmployeeNumber\": \"123ABC\", \"NICategory\": \"A\" }" + "example" : { + "PayrollCalendarID" : "216d80e6-af55-47b1-b718-9457c3f5d2fe", + "StartDate" : "2020-04-01", + "EmployeeNumber" : "123ABC", + "NICategory" : "A" + } } }, "required" : true @@ -6160,7 +6237,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/LeaveType" }, - "example" : "{ \"name\": \"My opebvwbfxf Leave\", \"isPaidLeave\": false, \"showOnPayslip\": true }" + "example" : { + "name" : "My opebvwbfxf Leave", + "isPaidLeave" : false, + "showOnPayslip" : true + } } }, "required" : true @@ -6511,7 +6592,12 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PayRunCalendar" }, - "example" : "{ \"name\": \"My Weekly Cal\", \"calendarType\": \"Weekly\", \"periodStartDate\": \"2020-05-01\", \"paymentDate\": \"2020-05-15\" }" + "example" : { + "name" : "My Weekly Cal", + "calendarType" : "Weekly", + "periodStartDate" : "2020-05-01", + "paymentDate" : "2020-05-15" + } } }, "required" : true @@ -6664,7 +6750,10 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Reimbursement" }, - "example" : "{ \"name\": \"My new Reimburse\", \"accountID\": \"9ee28149-32a9-4661-8eab-a28738696983\" }" + "example" : { + "name" : "My new Reimburse", + "accountID" : "9ee28149-32a9-4661-8eab-a28738696983" + } } }, "required" : true @@ -6821,7 +6910,21 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Timesheet" }, - "example" : "{ \"payrollCalendarID\": \"216d80e6-af55-47b1-b718-9457c3f5d2fe\", \"employeeID\": \"aad6b292-7b94-408b-93f6-e489867e3fb0\", \"startDate\": \"2020-04-13\", \"endDate\": \"2020-04-19\", \"timesheetLines\": [ { \"date\": \"2020-04-13\", \"earningsRateID\": \"87f5b43a-cf51-4b74-92de-94c819e82d27\", \"numberOfUnits\": 8 }, { \"date\": \"2020-04-15\", \"earningsRateID\": \"87f5b43a-cf51-4b74-92de-94c819e82d27\", \"numberOfUnits\": 6 } ] }" + "example" : { + "payrollCalendarID" : "216d80e6-af55-47b1-b718-9457c3f5d2fe", + "employeeID" : "aad6b292-7b94-408b-93f6-e489867e3fb0", + "startDate" : "2020-04-13", + "endDate" : "2020-04-19", + "timesheetLines" : [ { + "date" : "2020-04-13", + "earningsRateID" : "87f5b43a-cf51-4b74-92de-94c819e82d27", + "numberOfUnits" : 8 + }, { + "date" : "2020-04-15", + "earningsRateID" : "87f5b43a-cf51-4b74-92de-94c819e82d27", + "numberOfUnits" : 6 + } ] + } } }, "required" : true @@ -7013,7 +7116,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/TimesheetLine" }, - "example" : "{ \"date\": \"2020-04-14\", \"earningsRateID\": \"87f5b43a-cf51-4b74-92de-94c819e82d27\", \"numberOfUnits\": 1 }" + "example" : { + "date" : "2020-04-14", + "earningsRateID" : "87f5b43a-cf51-4b74-92de-94c819e82d27", + "numberOfUnits" : 1 + } } }, "required" : true @@ -13387,7 +13494,21 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/Employee" }, - "example" : "{ \"title\": \"Mr.\", \"firstName\": \"TestDataUK\", \"lastName\": \"Tester\", \"dateOfBirth\": \"1992-11-22T00:00:00\", \"gender\": \"M\", \"email\": \"tester@gmail.com\", \"phoneNumber\": \"0400123456\", \"isOffPayrollWorker\": false, \"address\": { \"addressLine1\": \"171 Midsummer\", \"city\": \"Milton Keyness\", \"postCode\": \"MK9 1EB\" } }" + "example" : { + "title" : "Mr.", + "firstName" : "TestDataUK", + "lastName" : "Tester", + "dateOfBirth" : "1992-11-22T00:00:00", + "gender" : "M", + "email" : "tester@gmail.com", + "phoneNumber" : "0400123456", + "isOffPayrollWorker" : false, + "address" : { + "addressLine1" : "171 Midsummer", + "city" : "Milton Keyness", + "postCode" : "MK9 1EB" + } + } } }, "required" : true @@ -13610,7 +13731,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EarningsTemplate" }, - "example" : "{ \"ratePerUnit\": 30, \"numberOfUnits\": 4, \"earningsRateID\": \"87f5b43a-cf51-4b74-92de-94c819e82d27\" }" + "example" : { + "ratePerUnit" : 30, + "numberOfUnits" : 4, + "earningsRateID" : "87f5b43a-cf51-4b74-92de-94c819e82d27" + } } }, "required" : true @@ -13829,7 +13954,18 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeLeave" }, - "example" : "{ \"leaveTypeID\": \"ed08dffe-788e-4b24-9630-f0fa2f4d164c\", \"description\": \"Creating a Description\", \"startDate\": \"2020-04-24\", \"endDate\": \"2020-04-26\", \"periods\": [ { \"periodStartDate\": \"2020-04-20\", \"periodEndDate\": \"2020-04-26\", \"numberOfUnits\": 1, \"periodStatus\": \"Approved\" } ] }" + "example" : { + "leaveTypeID" : "ed08dffe-788e-4b24-9630-f0fa2f4d164c", + "description" : "Creating a Description", + "startDate" : "2020-04-24", + "endDate" : "2020-04-26", + "periods" : [ { + "periodStartDate" : "2020-04-20", + "periodEndDate" : "2020-04-26", + "numberOfUnits" : 1, + "periodStatus" : "Approved" + } ] + } } }, "required" : true @@ -14020,7 +14156,14 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/EmployeeOpeningBalances" }, - "example" : "{ \"statutoryAdoptionPay\": 20, \"statutoryMaternityPay\": 20, \"statutoryPaternityPay\": 20, \"statutorySharedParentalPay\": 20, \"statutorySickPay\": 20, \"priorEmployeeNumber\": 20 }" + "example" : { + "statutoryAdoptionPay" : 20, + "statutoryMaternityPay" : 20, + "statutoryPaternityPay" : 20, + "statutorySharedParentalPay" : 20, + "statutorySickPay" : 20, + "priorEmployeeNumber" : 20 + } } }, "required" : true @@ -14239,7 +14382,15 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/SalaryAndWage" }, - "example" : "{ \"earningsRateID\": \"87f5b43a-cf51-4b74-92de-94c819e82d27\", \"numberOfUnitsPerWeek\": 3, \"ratePerUnit\": 11, \"effectiveFrom\": \"2020-05-15\", \"annualSalary\": 101, \"status\": \"ACTIVE\", \"paymentType\": \"Salary\" }" + "example" : { + "earningsRateID" : "87f5b43a-cf51-4b74-92de-94c819e82d27", + "numberOfUnitsPerWeek" : 3, + "ratePerUnit" : 11, + "effectiveFrom" : "2020-05-15", + "annualSalary" : 101, + "status" : "ACTIVE", + "paymentType" : "Salary" + } } }, "required" : true @@ -14430,7 +14581,9 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/PayRun" }, - "example" : "{ \"paymentDate\": \"2020-05-01\" }" + "example" : { + "paymentDate" : "2020-05-01" + } } }, "required" : true @@ -14650,7 +14803,11 @@

Parameters

"schema" : { "$ref" : "#/components/schemas/TimesheetLine" }, - "example" : "{ \"date\": \"2020-04-14\", \"earningsRateID\": \"87f5b43a-cf51-4b74-92de-94c819e82d27\", \"numberOfUnits\": 2 }" + "example" : { + "date" : "2020-04-14", + "earningsRateID" : "87f5b43a-cf51-4b74-92de-94c819e82d27", + "numberOfUnits" : 2 + } } }, "required" : true diff --git a/pom.xml b/pom.xml index 73939d89..cf0c3dca 100644 --- a/pom.xml +++ b/pom.xml @@ -41,7 +41,7 @@ com.auth0 java-jwt - 3.19.4 + 4.4.0 com.auth0 @@ -68,17 +68,17 @@ commons-io commons-io - 2.7 + 2.17.0 jakarta.servlet jakarta.servlet-api - 6.0.0 + 6.1.0 org.mockito mockito-core - 5.10.0 + 5.14.1 test @@ -92,7 +92,7 @@ org.slf4j slf4j-api - 1.7.30 + 2.0.16 @@ -159,7 +159,7 @@ maven-deploy-plugin - 2.8.2 + 3.1.3 org.apache.maven.plugins @@ -173,7 +173,7 @@ org.apache.maven.plugins maven-source-plugin - 3.0.1 + 3.3.1 attach-sources @@ -203,17 +203,17 @@ org.apache.maven.plugins maven-pmd-plugin - 3.8 + 3.25.0 org.codehaus.mojo findbugs-maven-plugin - 3.0.4 + 3.0.5 org.apache.maven.plugins maven-war-plugin - 3.1.0 + 3.4.0 example/src/main/webapp/WEB-INF/web.xml @@ -232,7 +232,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.3.2 + 3.10.1 8 @@ -248,7 +248,7 @@ org.apache.maven.plugins maven-gpg-plugin - 1.6 + 3.2.7 sign-artifacts @@ -261,7 +261,6 @@ --pinentry-mode loopback - gpg.passphrase @@ -269,7 +268,7 @@ org.sonatype.plugins nexus-staging-maven-plugin - 1.6.13 + 1.7.0 true ossrh @@ -280,7 +279,7 @@ org.apache.maven.plugins maven-surefire-plugin - 3.0.0-M4 + 3.5.0 -Duser.timezone=GMT-08:00 @@ -292,12 +291,12 @@ org.apache.maven.plugins maven-pmd-plugin - 3.8 + 3.25.0 org.codehaus.mojo findbugs-maven-plugin - 3.0.4 + 3.0.5 @@ -316,12 +315,12 @@ UTF-8 UTF-8 11 - 1.6.3 - 2.3.0 + 1.6.14 + 2.7.0 2.25.1 - 2.16.1 - 2.16.1 - 2.12.5 + 2.18.0 + 2.18.0 + 2.15.2 4.13.2 4.5.3 3.1.5 diff --git a/src/main/java/com/xero/api/client/AccountingApi.java b/src/main/java/com/xero/api/client/AccountingApi.java index bb016a1d..79d49f7c 100644 --- a/src/main/java/com/xero/api/client/AccountingApi.java +++ b/src/main/java/com/xero/api/client/AccountingApi.java @@ -15,8 +15,6 @@ import com.fasterxml.jackson.core.type.TypeReference; import com.google.api.client.auth.oauth2.BearerToken; import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.ByteArrayContent; -import com.google.api.client.http.FileContent; import com.google.api.client.http.GenericUrl; import com.google.api.client.http.HttpContent; import com.google.api.client.http.HttpHeaders; @@ -255,6 +253,7 @@ public HttpResponse createAccountForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Accounts"); String url = uriBuilder.build().toString(); @@ -278,143 +277,6 @@ public HttpResponse createAccountForHttpResponse( .execute(); } - // Overload params for createAccountAttachmentByFileName to allow byte[] or File type to be passed - // as body - /** - * Creates an attachment on a specific account - * - *

200 - Success - return response of type Attachments array of Attachment - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param accountID Unique identifier for Account object - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param mimeType The type of file being attached - * @param accessToken Authorization token for user set in header of each request - * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API - */ - public Attachments createAccountAttachmentByFileName( - String accessToken, - String xeroTenantId, - UUID accountID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createAccountAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, accountID, fileName, body, idempotencyKey, mimeType); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createAccountAttachmentByFileName -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates an attachment on a specific account - * - *

200 - Success - return response of type Attachments array of Attachment - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param accountID Unique identifier for Account object - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param mimeType The type of file being attached - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public HttpResponse createAccountAttachmentByFileNameForHttpResponse( - String accessToken, - String xeroTenantId, - UUID accountID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createAccountAttachmentByFileName"); - } // verify the required parameter 'accountID' is set - if (accountID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accountID' when calling" - + " createAccountAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " createAccountAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling createAccountAttachmentByFileName"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createAccountAttachmentByFileName"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("AccountID", accountID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/Accounts/{AccountID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - ByteArrayContent content = null; - - content = new ByteArrayContent(mimeType, body); - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - /** * Creates an attachment on a specific account * @@ -527,6 +389,7 @@ public HttpResponse createAccountAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -541,10 +404,10 @@ public HttpResponse createAccountAttachmentByFileNameForHttpResponse( if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(body); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -557,8 +420,6 @@ public HttpResponse createAccountAttachmentByFileNameForHttpResponse( .execute(); } - // Overload params for createBankTransactionAttachmentByFileName to allow byte[] or File type to - // be passed as body /** * Creates an attachment for a specific bank transaction by filename * @@ -572,31 +433,23 @@ public HttpResponse createAccountAttachmentByFileNameForHttpResponse( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ public Attachments createBankTransactionAttachmentByFileName( String accessToken, String xeroTenantId, UUID bankTransactionID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = createBankTransactionAttachmentByFileNameForHttpResponse( - accessToken, - xeroTenantId, - bankTransactionID, - fileName, - body, - idempotencyKey, - mimeType); + accessToken, xeroTenantId, bankTransactionID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { @@ -607,7 +460,18 @@ public Attachments createBankTransactionAttachmentByFileName( logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -627,19 +491,17 @@ public Attachments createBankTransactionAttachmentByFileName( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ public HttpResponse createBankTransactionAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, UUID bankTransactionID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { @@ -671,6 +533,7 @@ public HttpResponse createBankTransactionAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -687,9 +550,9 @@ public HttpResponse createBankTransactionAttachmentByFileNameForHttpResponse( logger.debug("PUT " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -703,42 +566,41 @@ public HttpResponse createBankTransactionAttachmentByFileNameForHttpResponse( } /** - * Creates an attachment for a specific bank transaction by filename + * Creates a history record for a specific bank transactions * - *

200 - Success - return response of Attachments array of Attachment + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param bankTransactionID Xero generated unique identifier for a bank transaction - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return HistoryRecords * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments createBankTransactionAttachmentByFileName( + public HistoryRecords createBankTransactionHistoryRecord( String accessToken, String xeroTenantId, UUID bankTransactionID, - String fileName, - File body, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createBankTransactionAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, bankTransactionID, fileName, body, idempotencyKey); + createBankTransactionHistoryRecordForHttpResponse( + accessToken, xeroTenantId, bankTransactionID, historyRecords, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createBankTransactionAttachmentByFileName -------------------"); + + " : createBankTransactionHistoryRecord -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -748,9 +610,9 @@ public Attachments createBankTransactionAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("HistoryRecords", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("HistoryRecords", object, e); } else { handler.execute(e); } @@ -761,79 +623,72 @@ public Attachments createBankTransactionAttachmentByFileName( } /** - * Creates an attachment for a specific bank transaction by filename + * Creates a history record for a specific bank transactions * - *

200 - Success - return response of Attachments array of Attachment + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param bankTransactionID Xero generated unique identifier for a bank transaction - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse createBankTransactionAttachmentByFileNameForHttpResponse( + public HttpResponse createBankTransactionHistoryRecordForHttpResponse( String accessToken, String xeroTenantId, UUID bankTransactionID, - String fileName, - File body, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " createBankTransactionAttachmentByFileName"); + + " createBankTransactionHistoryRecord"); } // verify the required parameter 'bankTransactionID' is set if (bankTransactionID == null) { throw new IllegalArgumentException( "Missing the required parameter 'bankTransactionID' when calling" - + " createBankTransactionAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " createBankTransactionAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + + " createBankTransactionHistoryRecord"); + } // verify the required parameter 'historyRecords' is set + if (historyRecords == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " createBankTransactionAttachmentByFileName"); + "Missing the required parameter 'historyRecords' when calling" + + " createBankTransactionHistoryRecord"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " createBankTransactionAttachmentByFileName"); + + " createBankTransactionHistoryRecord"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); uriVariables.put("BankTransactionID", bankTransactionID); - uriVariables.put("FileName", fileName); UriBuilder uriBuilder = UriBuilder.fromUri( - apiClient.getBasePath() - + "/BankTransactions/{BankTransactionID}/Attachments/{FileName}"); + apiClient.getBasePath() + "/BankTransactions/{BankTransactionID}/History"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(historyRecords); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -847,41 +702,46 @@ public HttpResponse createBankTransactionAttachmentByFileNameForHttpResponse( } /** - * Creates a history record for a specific bank transactions + * Creates one or more spent or received money transaction * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects + *

200 - Success - return response of type BankTransactions array with new + * BankTransaction * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param bankTransactionID Xero generated unique identifier for a bank transaction - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * @param bankTransactions BankTransactions with an array of BankTransaction objects in body of * request + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return HistoryRecords + * @return BankTransactions * @throws IOException if an error occurs while attempting to invoke the API * */ - public HistoryRecords createBankTransactionHistoryRecord( + public BankTransactions createBankTransactions( String accessToken, String xeroTenantId, - UUID bankTransactionID, - HistoryRecords historyRecords, + BankTransactions bankTransactions, + Boolean summarizeErrors, + Integer unitdp, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createBankTransactionHistoryRecordForHttpResponse( - accessToken, xeroTenantId, bankTransactionID, historyRecords, idempotencyKey); + createBankTransactionsForHttpResponse( + accessToken, xeroTenantId, bankTransactions, summarizeErrors, unitdp, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createBankTransactionHistoryRecord -------------------"); + + " : createBankTransactions -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -891,9 +751,9 @@ public HistoryRecords createBankTransactionHistoryRecord( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("HistoryRecords", object.getMessage(), e); + handler.validationError("BankTransactions", object.getMessage(), e); } - handler.validationError("HistoryRecords", object, e); + handler.validationError("BankTransactions", object, e); } else { handler.execute(e); } @@ -904,147 +764,7 @@ public HistoryRecords createBankTransactionHistoryRecord( } /** - * Creates a history record for a specific bank transactions - * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param bankTransactionID Xero generated unique identifier for a bank transaction - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse createBankTransactionHistoryRecordForHttpResponse( - String accessToken, - String xeroTenantId, - UUID bankTransactionID, - HistoryRecords historyRecords, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createBankTransactionHistoryRecord"); - } // verify the required parameter 'bankTransactionID' is set - if (bankTransactionID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'bankTransactionID' when calling" - + " createBankTransactionHistoryRecord"); - } // verify the required parameter 'historyRecords' is set - if (historyRecords == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'historyRecords' when calling" - + " createBankTransactionHistoryRecord"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createBankTransactionHistoryRecord"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("BankTransactionID", bankTransactionID); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/BankTransactions/{BankTransactionID}/History"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(historyRecords); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Creates one or more spent or received money transaction - * - *

200 - Success - return response of type BankTransactions array with new - * BankTransaction - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param bankTransactions BankTransactions with an array of BankTransaction objects in body of - * request - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return BankTransactions - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public BankTransactions createBankTransactions( - String accessToken, - String xeroTenantId, - BankTransactions bankTransactions, - Boolean summarizeErrors, - Integer unitdp, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createBankTransactionsForHttpResponse( - accessToken, xeroTenantId, bankTransactions, summarizeErrors, unitdp, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createBankTransactions -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("BankTransactions", object.getMessage(), e); - } - handler.validationError("BankTransactions", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates one or more spent or received money transaction + * Creates one or more spent or received money transaction * *

200 - Success - return response of type BankTransactions array with new * BankTransaction @@ -1089,6 +809,7 @@ public HttpResponse createBankTransactionsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/BankTransactions"); if (summarizeErrors != null) { @@ -1238,6 +959,7 @@ public HttpResponse createBankTransferForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/BankTransfers"); String url = uriBuilder.build().toString(); @@ -1261,8 +983,6 @@ public HttpResponse createBankTransferForHttpResponse( .execute(); } - // Overload params for createBankTransferAttachmentByFileName to allow byte[] or File type to be - // passed as body /** * 200 - Success - return response of Attachments array of 0 to N Attachment for a Bank * Transfer @@ -1275,25 +995,23 @@ public HttpResponse createBankTransferForHttpResponse( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ public Attachments createBankTransferAttachmentByFileName( String accessToken, String xeroTenantId, UUID bankTransferID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = createBankTransferAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, bankTransferID, fileName, body, idempotencyKey, mimeType); + accessToken, xeroTenantId, bankTransferID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { @@ -1304,7 +1022,18 @@ public Attachments createBankTransferAttachmentByFileName( logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -1323,19 +1052,17 @@ public Attachments createBankTransferAttachmentByFileName( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ public HttpResponse createBankTransferAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, UUID bankTransferID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { @@ -1367,6 +1094,7 @@ public HttpResponse createBankTransferAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1382,9 +1110,9 @@ public HttpResponse createBankTransferAttachmentByFileNameForHttpResponse( logger.debug("PUT " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -1398,41 +1126,41 @@ public HttpResponse createBankTransferAttachmentByFileNameForHttpResponse( } /** - * 200 - Success - return response of Attachments array of 0 to N Attachment for a Bank - * Transfer + * Creates a history record for a specific bank transfer + * + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param bankTransferID Xero generated unique identifier for a bank transfer - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return HistoryRecords * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments createBankTransferAttachmentByFileName( + public HistoryRecords createBankTransferHistoryRecord( String accessToken, String xeroTenantId, UUID bankTransferID, - String fileName, - File body, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createBankTransferAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, bankTransferID, fileName, body, idempotencyKey); + createBankTransferHistoryRecordForHttpResponse( + accessToken, xeroTenantId, bankTransferID, historyRecords, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createBankTransferAttachmentByFileName -------------------"); + + " : createBankTransferHistoryRecord -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -1442,9 +1170,9 @@ public Attachments createBankTransferAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("HistoryRecords", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("HistoryRecords", object, e); } else { handler.execute(e); } @@ -1455,77 +1183,71 @@ public Attachments createBankTransferAttachmentByFileName( } /** - * 200 - Success - return response of Attachments array of 0 to N Attachment for a Bank - * Transfer + * Creates a history record for a specific bank transfer + * + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param bankTransferID Xero generated unique identifier for a bank transfer - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse createBankTransferAttachmentByFileNameForHttpResponse( + public HttpResponse createBankTransferHistoryRecordForHttpResponse( String accessToken, String xeroTenantId, UUID bankTransferID, - String fileName, - File body, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " createBankTransferAttachmentByFileName"); + + " createBankTransferHistoryRecord"); } // verify the required parameter 'bankTransferID' is set if (bankTransferID == null) { throw new IllegalArgumentException( "Missing the required parameter 'bankTransferID' when calling" - + " createBankTransferAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " createBankTransferAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + + " createBankTransferHistoryRecord"); + } // verify the required parameter 'historyRecords' is set + if (historyRecords == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " createBankTransferAttachmentByFileName"); + "Missing the required parameter 'historyRecords' when calling" + + " createBankTransferHistoryRecord"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " createBankTransferAttachmentByFileName"); + + " createBankTransferHistoryRecord"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); uriVariables.put("BankTransferID", bankTransferID); - uriVariables.put("FileName", fileName); UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/BankTransfers/{BankTransferID}/Attachments/{FileName}"); + UriBuilder.fromUri(apiClient.getBasePath() + "/BankTransfers/{BankTransferID}/History"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(historyRecords); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -1539,175 +1261,41 @@ public HttpResponse createBankTransferAttachmentByFileNameForHttpResponse( } /** - * Creates a history record for a specific bank transfer + * Creates one or many batch payments for invoices * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects + *

200 - Success - return response of type BatchPayments array of BatchPayment objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param bankTransferID Xero generated unique identifier for a bank transfer - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request + * @param batchPayments BatchPayments with an array of Payments in body of request + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return HistoryRecords + * @return BatchPayments * @throws IOException if an error occurs while attempting to invoke the API * */ - public HistoryRecords createBankTransferHistoryRecord( + public BatchPayments createBatchPayment( String accessToken, String xeroTenantId, - UUID bankTransferID, - HistoryRecords historyRecords, + BatchPayments batchPayments, + Boolean summarizeErrors, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createBankTransferHistoryRecordForHttpResponse( - accessToken, xeroTenantId, bankTransferID, historyRecords, idempotencyKey); + createBatchPaymentForHttpResponse( + accessToken, xeroTenantId, batchPayments, summarizeErrors, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createBankTransferHistoryRecord -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("HistoryRecords", object.getMessage(), e); - } - handler.validationError("HistoryRecords", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates a history record for a specific bank transfer - * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param bankTransferID Xero generated unique identifier for a bank transfer - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse createBankTransferHistoryRecordForHttpResponse( - String accessToken, - String xeroTenantId, - UUID bankTransferID, - HistoryRecords historyRecords, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createBankTransferHistoryRecord"); - } // verify the required parameter 'bankTransferID' is set - if (bankTransferID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'bankTransferID' when calling" - + " createBankTransferHistoryRecord"); - } // verify the required parameter 'historyRecords' is set - if (historyRecords == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'historyRecords' when calling" - + " createBankTransferHistoryRecord"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createBankTransferHistoryRecord"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("BankTransferID", bankTransferID); - - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/BankTransfers/{BankTransferID}/History"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(historyRecords); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Creates one or many batch payments for invoices - * - *

200 - Success - return response of type BatchPayments array of BatchPayment objects - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param batchPayments BatchPayments with an array of Payments in body of request - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return BatchPayments - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public BatchPayments createBatchPayment( - String accessToken, - String xeroTenantId, - BatchPayments batchPayments, - Boolean summarizeErrors, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createBatchPaymentForHttpResponse( - accessToken, xeroTenantId, batchPayments, summarizeErrors, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createBatchPayment -------------------"); + + " : createBatchPayment -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -1770,6 +1358,7 @@ public HttpResponse createBatchPaymentForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/BatchPayments"); if (summarizeErrors != null) { @@ -1919,6 +1508,7 @@ public HttpResponse createBatchPaymentHistoryRecordForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -2053,6 +1643,7 @@ public HttpResponse createBrandingThemePaymentServicesForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -2082,8 +1673,6 @@ public HttpResponse createBrandingThemePaymentServicesForHttpResponse( .execute(); } - // Overload params for createContactAttachmentByFileName to allow byte[] or File type to be passed - // as body /** * 200 - Success - return response of type Attachments array with an newly created * Attachment @@ -2096,25 +1685,23 @@ public HttpResponse createBrandingThemePaymentServicesForHttpResponse( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ public Attachments createContactAttachmentByFileName( String accessToken, String xeroTenantId, UUID contactID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = createContactAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, contactID, fileName, body, idempotencyKey, mimeType); + accessToken, xeroTenantId, contactID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { @@ -2125,7 +1712,18 @@ public Attachments createContactAttachmentByFileName( logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -2144,19 +1742,17 @@ public Attachments createContactAttachmentByFileName( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ public HttpResponse createContactAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, UUID contactID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { @@ -2187,6 +1783,7 @@ public HttpResponse createContactAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -2202,9 +1799,9 @@ public HttpResponse createContactAttachmentByFileNameForHttpResponse( logger.debug("PUT " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -2218,41 +1815,36 @@ public HttpResponse createContactAttachmentByFileNameForHttpResponse( } /** - * 200 - Success - return response of type Attachments array with an newly created - * Attachment + * Creates a contact group * - *

400 - A failed request due to validation error + *

200 - Success - return response of type Contact Groups array of newly created Contact + * Group + * + *

400 - Validation Error - some data was incorrect returns response of type Error * * @param xeroTenantId Xero identifier for Tenant - * @param contactID Unique identifier for a Contact - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param contactGroups ContactGroups with an array of names in request body * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return ContactGroups * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments createContactAttachmentByFileName( - String accessToken, - String xeroTenantId, - UUID contactID, - String fileName, - File body, - String idempotencyKey) + public ContactGroups createContactGroup( + String accessToken, String xeroTenantId, ContactGroups contactGroups, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createContactAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, contactID, fileName, body, idempotencyKey); + createContactGroupForHttpResponse( + accessToken, xeroTenantId, contactGroups, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createContactAttachmentByFileName -------------------"); + + " : createContactGroup -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -2262,9 +1854,9 @@ public Attachments createContactAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("ContactGroups", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("ContactGroups", object, e); } else { handler.execute(e); } @@ -2275,76 +1867,53 @@ public Attachments createContactAttachmentByFileName( } /** - * 200 - Success - return response of type Attachments array with an newly created - * Attachment + * Creates a contact group * - *

400 - A failed request due to validation error + *

200 - Success - return response of type Contact Groups array of newly created Contact + * Group + * + *

400 - Validation Error - some data was incorrect returns response of type Error * * @param xeroTenantId Xero identifier for Tenant - * @param contactID Unique identifier for a Contact - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param contactGroups ContactGroups with an array of names in request body * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse createContactAttachmentByFileNameForHttpResponse( - String accessToken, - String xeroTenantId, - UUID contactID, - String fileName, - File body, - String idempotencyKey) + public HttpResponse createContactGroupForHttpResponse( + String accessToken, String xeroTenantId, ContactGroups contactGroups, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createContactAttachmentByFileName"); - } // verify the required parameter 'contactID' is set - if (contactID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'contactID' when calling" - + " createContactAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " createContactAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + "Missing the required parameter 'xeroTenantId' when calling createContactGroup"); + } // verify the required parameter 'contactGroups' is set + if (contactGroups == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling createContactAttachmentByFileName"); + "Missing the required parameter 'contactGroups' when calling createContactGroup"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createContactAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling createContactGroup"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("ContactID", contactID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/Contacts/{ContactID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/ContactGroups"); + String url = uriBuilder.build().toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(contactGroups); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -2358,122 +1927,11 @@ public HttpResponse createContactAttachmentByFileNameForHttpResponse( } /** - * Creates a contact group + * Creates contacts to a specific contact group * - *

200 - Success - return response of type Contact Groups array of newly created Contact - * Group + *

200 - Success - return response of type Contacts array of added Contacts * - *

400 - Validation Error - some data was incorrect returns response of type Error - * - * @param xeroTenantId Xero identifier for Tenant - * @param contactGroups ContactGroups with an array of names in request body - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return ContactGroups - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public ContactGroups createContactGroup( - String accessToken, String xeroTenantId, ContactGroups contactGroups, String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createContactGroupForHttpResponse( - accessToken, xeroTenantId, contactGroups, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createContactGroup -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("ContactGroups", object.getMessage(), e); - } - handler.validationError("ContactGroups", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates a contact group - * - *

200 - Success - return response of type Contact Groups array of newly created Contact - * Group - * - *

400 - Validation Error - some data was incorrect returns response of type Error - * - * @param xeroTenantId Xero identifier for Tenant - * @param contactGroups ContactGroups with an array of names in request body - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse createContactGroupForHttpResponse( - String accessToken, String xeroTenantId, ContactGroups contactGroups, String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling createContactGroup"); - } // verify the required parameter 'contactGroups' is set - if (contactGroups == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'contactGroups' when calling createContactGroup"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling createContactGroup"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/ContactGroups"); - String url = uriBuilder.build().toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(contactGroups); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Creates contacts to a specific contact group - * - *

200 - Success - return response of type Contacts array of added Contacts - * - *

400 - A failed request due to validation error + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param contactGroupID Unique identifier for a Contact Group @@ -2571,6 +2029,7 @@ public HttpResponse createContactGroupContactsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -2701,6 +2160,7 @@ public HttpResponse createContactHistoryForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -2827,6 +2287,7 @@ public HttpResponse createContactsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Contacts"); if (summarizeErrors != null) { @@ -2983,6 +2444,7 @@ public HttpResponse createCreditNoteAllocationForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -3031,8 +2493,6 @@ public HttpResponse createCreditNoteAllocationForHttpResponse( .execute(); } - // Overload params for createCreditNoteAttachmentByFileName to allow byte[] or File type to be - // passed as body /** * Creates an attachment for a specific credit note * @@ -3049,20 +2509,18 @@ public HttpResponse createCreditNoteAllocationForHttpResponse( * invoice * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ public Attachments createCreditNoteAttachmentByFileName( String accessToken, String xeroTenantId, UUID creditNoteID, String fileName, - byte[] body, + File body, Boolean includeOnline, - String idempotencyKey, - String mimeType) + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; @@ -3074,8 +2532,7 @@ public Attachments createCreditNoteAttachmentByFileName( fileName, body, includeOnline, - idempotencyKey, - mimeType); + idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { @@ -3086,7 +2543,18 @@ public Attachments createCreditNoteAttachmentByFileName( logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -3109,20 +2577,18 @@ public Attachments createCreditNoteAttachmentByFileName( * invoice * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ public HttpResponse createCreditNoteAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, UUID creditNoteID, String fileName, - byte[] body, + File body, Boolean includeOnline, - String idempotencyKey, - String mimeType) + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { @@ -3154,6 +2620,7 @@ public HttpResponse createCreditNoteAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -3189,9 +2656,9 @@ public HttpResponse createCreditNoteAttachmentByFileNameForHttpResponse( logger.debug("PUT " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -3205,52 +2672,41 @@ public HttpResponse createCreditNoteAttachmentByFileNameForHttpResponse( } /** - * Creates an attachment for a specific credit note + * Retrieves history records of a specific credit note * - *

200 - Success - return response of type Attachments array with newly created - * Attachment for specific Credit Note + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param creditNoteID Unique identifier for a Credit Note - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param includeOnline Allows an attachment to be seen by the end customer within their online - * invoice + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return HistoryRecords * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments createCreditNoteAttachmentByFileName( + public HistoryRecords createCreditNoteHistory( String accessToken, String xeroTenantId, UUID creditNoteID, - String fileName, - File body, - Boolean includeOnline, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createCreditNoteAttachmentByFileNameForHttpResponse( - accessToken, - xeroTenantId, - creditNoteID, - fileName, - body, - includeOnline, - idempotencyKey); + createCreditNoteHistoryForHttpResponse( + accessToken, xeroTenantId, creditNoteID, historyRecords, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createCreditNoteAttachmentByFileName -------------------"); + + " : createCreditNoteHistory -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -3260,9 +2716,9 @@ public Attachments createCreditNoteAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("HistoryRecords", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("HistoryRecords", object, e); } else { handler.execute(e); } @@ -3273,102 +2729,67 @@ public Attachments createCreditNoteAttachmentByFileName( } /** - * Creates an attachment for a specific credit note + * Retrieves history records of a specific credit note * - *

200 - Success - return response of type Attachments array with newly created - * Attachment for specific Credit Note + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param creditNoteID Unique identifier for a Credit Note - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param includeOnline Allows an attachment to be seen by the end customer within their online - * invoice + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse createCreditNoteAttachmentByFileNameForHttpResponse( + public HttpResponse createCreditNoteHistoryForHttpResponse( String accessToken, String xeroTenantId, UUID creditNoteID, - String fileName, - File body, - Boolean includeOnline, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createCreditNoteAttachmentByFileName"); + "Missing the required parameter 'xeroTenantId' when calling createCreditNoteHistory"); } // verify the required parameter 'creditNoteID' is set if (creditNoteID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'creditNoteID' when calling" - + " createCreditNoteAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " createCreditNoteAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + "Missing the required parameter 'creditNoteID' when calling createCreditNoteHistory"); + } // verify the required parameter 'historyRecords' is set + if (historyRecords == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " createCreditNoteAttachmentByFileName"); + "Missing the required parameter 'historyRecords' when calling createCreditNoteHistory"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createCreditNoteAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling createCreditNoteHistory"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); uriVariables.put("CreditNoteID", creditNoteID); - uriVariables.put("FileName", fileName); UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/CreditNotes/{CreditNoteID}/Attachments/{FileName}"); - if (includeOnline != null) { - String key = "IncludeOnline"; - Object value = includeOnline; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } + UriBuilder.fromUri(apiClient.getBasePath() + "/CreditNotes/{CreditNoteID}/History"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(historyRecords); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -3382,156 +2803,26 @@ public HttpResponse createCreditNoteAttachmentByFileNameForHttpResponse( } /** - * Retrieves history records of a specific credit note + * Creates a new credit note * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects + *

200 - Success - return response of type Credit Notes array of newly created + * CreditNote * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param creditNoteID Unique identifier for a Credit Note - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request + * @param creditNotes Credit Notes with array of CreditNote object in body of request + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return HistoryRecords + * @return CreditNotes * @throws IOException if an error occurs while attempting to invoke the API * */ - public HistoryRecords createCreditNoteHistory( - String accessToken, - String xeroTenantId, - UUID creditNoteID, - HistoryRecords historyRecords, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createCreditNoteHistoryForHttpResponse( - accessToken, xeroTenantId, creditNoteID, historyRecords, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createCreditNoteHistory -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("HistoryRecords", object.getMessage(), e); - } - handler.validationError("HistoryRecords", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Retrieves history records of a specific credit note - * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param creditNoteID Unique identifier for a Credit Note - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse createCreditNoteHistoryForHttpResponse( - String accessToken, - String xeroTenantId, - UUID creditNoteID, - HistoryRecords historyRecords, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling createCreditNoteHistory"); - } // verify the required parameter 'creditNoteID' is set - if (creditNoteID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'creditNoteID' when calling createCreditNoteHistory"); - } // verify the required parameter 'historyRecords' is set - if (historyRecords == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'historyRecords' when calling createCreditNoteHistory"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling createCreditNoteHistory"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("CreditNoteID", creditNoteID); - - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/CreditNotes/{CreditNoteID}/History"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(historyRecords); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Creates a new credit note - * - *

200 - Success - return response of type Credit Notes array of newly created - * CreditNote - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param creditNotes Credit Notes with array of CreditNote object in body of request - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return CreditNotes - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public CreditNotes createCreditNotes( + public CreditNotes createCreditNotes( String accessToken, String xeroTenantId, CreditNotes creditNotes, @@ -3617,6 +2908,7 @@ public HttpResponse createCreditNotesForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/CreditNotes"); if (summarizeErrors != null) { @@ -3763,6 +3055,7 @@ public HttpResponse createCurrencyForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Currencies"); String url = uriBuilder.build().toString(); @@ -3884,6 +3177,7 @@ public HttpResponse createEmployeesForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Employees"); if (summarizeErrors != null) { @@ -4025,6 +3319,7 @@ public HttpResponse createExpenseClaimHistoryForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -4141,6 +3436,7 @@ public HttpResponse createExpenseClaimsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/ExpenseClaims"); String url = uriBuilder.build().toString(); @@ -4164,8 +3460,6 @@ public HttpResponse createExpenseClaimsForHttpResponse( .execute(); } - // Overload params for createInvoiceAttachmentByFileName to allow byte[] or File type to be passed - // as body /** * Creates an attachment for a specific invoice or purchase bill by filename * @@ -4182,33 +3476,24 @@ public HttpResponse createExpenseClaimsForHttpResponse( * invoice * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ public Attachments createInvoiceAttachmentByFileName( String accessToken, String xeroTenantId, UUID invoiceID, String fileName, - byte[] body, + File body, Boolean includeOnline, - String idempotencyKey, - String mimeType) + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = createInvoiceAttachmentByFileNameForHttpResponse( - accessToken, - xeroTenantId, - invoiceID, - fileName, - body, - includeOnline, - idempotencyKey, - mimeType); + accessToken, xeroTenantId, invoiceID, fileName, body, includeOnline, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { @@ -4219,7 +3504,18 @@ public Attachments createInvoiceAttachmentByFileName( logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -4242,20 +3538,18 @@ public Attachments createInvoiceAttachmentByFileName( * invoice * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ public HttpResponse createInvoiceAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, UUID invoiceID, String fileName, - byte[] body, + File body, Boolean includeOnline, - String idempotencyKey, - String mimeType) + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { @@ -4286,6 +3580,7 @@ public HttpResponse createInvoiceAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -4321,9 +3616,9 @@ public HttpResponse createInvoiceAttachmentByFileNameForHttpResponse( logger.debug("PUT " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -4337,46 +3632,41 @@ public HttpResponse createInvoiceAttachmentByFileNameForHttpResponse( } /** - * Creates an attachment for a specific invoice or purchase bill by filename + * Creates a history record for a specific invoice * - *

200 - Success - return response of type Attachments array with newly created - * Attachment + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param invoiceID Unique identifier for an Invoice - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param includeOnline Allows an attachment to be seen by the end customer within their online - * invoice + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return HistoryRecords * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments createInvoiceAttachmentByFileName( + public HistoryRecords createInvoiceHistory( String accessToken, String xeroTenantId, UUID invoiceID, - String fileName, - File body, - Boolean includeOnline, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createInvoiceAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, invoiceID, fileName, body, includeOnline, idempotencyKey); + createInvoiceHistoryForHttpResponse( + accessToken, xeroTenantId, invoiceID, historyRecords, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createInvoiceAttachmentByFileName -------------------"); + + " : createInvoiceHistory -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -4386,9 +3676,9 @@ public Attachments createInvoiceAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("HistoryRecords", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("HistoryRecords", object, e); } else { handler.execute(e); } @@ -4399,101 +3689,67 @@ public Attachments createInvoiceAttachmentByFileName( } /** - * Creates an attachment for a specific invoice or purchase bill by filename + * Creates a history record for a specific invoice * - *

200 - Success - return response of type Attachments array with newly created - * Attachment + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param invoiceID Unique identifier for an Invoice - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param includeOnline Allows an attachment to be seen by the end customer within their online - * invoice + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse createInvoiceAttachmentByFileNameForHttpResponse( + public HttpResponse createInvoiceHistoryForHttpResponse( String accessToken, String xeroTenantId, UUID invoiceID, - String fileName, - File body, - Boolean includeOnline, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createInvoiceAttachmentByFileName"); + "Missing the required parameter 'xeroTenantId' when calling createInvoiceHistory"); } // verify the required parameter 'invoiceID' is set if (invoiceID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'invoiceID' when calling" - + " createInvoiceAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " createInvoiceAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + "Missing the required parameter 'invoiceID' when calling createInvoiceHistory"); + } // verify the required parameter 'historyRecords' is set + if (historyRecords == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling createInvoiceAttachmentByFileName"); + "Missing the required parameter 'historyRecords' when calling createInvoiceHistory"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createInvoiceAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling createInvoiceHistory"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); uriVariables.put("InvoiceID", invoiceID); - uriVariables.put("FileName", fileName); UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/Invoices/{InvoiceID}/Attachments/{FileName}"); - if (includeOnline != null) { - String key = "IncludeOnline"; - Object value = includeOnline; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } + UriBuilder.fromUri(apiClient.getBasePath() + "/Invoices/{InvoiceID}/History"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(historyRecords); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -4507,139 +3763,9 @@ public HttpResponse createInvoiceAttachmentByFileNameForHttpResponse( } /** - * Creates a history record for a specific invoice + * Creates one or more sales invoices or purchase bills * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param invoiceID Unique identifier for an Invoice - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HistoryRecords - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public HistoryRecords createInvoiceHistory( - String accessToken, - String xeroTenantId, - UUID invoiceID, - HistoryRecords historyRecords, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createInvoiceHistoryForHttpResponse( - accessToken, xeroTenantId, invoiceID, historyRecords, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createInvoiceHistory -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("HistoryRecords", object.getMessage(), e); - } - handler.validationError("HistoryRecords", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates a history record for a specific invoice - * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param invoiceID Unique identifier for an Invoice - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse createInvoiceHistoryForHttpResponse( - String accessToken, - String xeroTenantId, - UUID invoiceID, - HistoryRecords historyRecords, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling createInvoiceHistory"); - } // verify the required parameter 'invoiceID' is set - if (invoiceID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'invoiceID' when calling createInvoiceHistory"); - } // verify the required parameter 'historyRecords' is set - if (historyRecords == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'historyRecords' when calling createInvoiceHistory"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling createInvoiceHistory"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("InvoiceID", invoiceID); - - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/Invoices/{InvoiceID}/History"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(historyRecords); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Creates one or more sales invoices or purchase bills - * - *

200 - Success - return response of type Invoices array with newly created Invoice + *

200 - Success - return response of type Invoices array with newly created Invoice * *

400 - A failed request due to validation error * @@ -4740,6 +3866,7 @@ public HttpResponse createInvoicesForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Invoices"); if (summarizeErrors != null) { @@ -4901,6 +4028,7 @@ public HttpResponse createItemHistoryForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -5032,6 +4160,7 @@ public HttpResponse createItemsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Items"); if (summarizeErrors != null) { @@ -5190,6 +4319,7 @@ public HttpResponse createLinkedTransactionForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/LinkedTransactions"); String url = uriBuilder.build().toString(); @@ -5213,8 +4343,6 @@ public HttpResponse createLinkedTransactionForHttpResponse( .execute(); } - // Overload params for createManualJournalAttachmentByFileName to allow byte[] or File type to be - // passed as body /** * Creates a specific attachment for a specific manual journal by file name * @@ -5229,25 +4357,23 @@ public HttpResponse createLinkedTransactionForHttpResponse( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ public Attachments createManualJournalAttachmentByFileName( String accessToken, String xeroTenantId, UUID manualJournalID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = createManualJournalAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, manualJournalID, fileName, body, idempotencyKey, mimeType); + accessToken, xeroTenantId, manualJournalID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { @@ -5258,7 +4384,18 @@ public Attachments createManualJournalAttachmentByFileName( logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -5279,19 +4416,17 @@ public Attachments createManualJournalAttachmentByFileName( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ public HttpResponse createManualJournalAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, UUID manualJournalID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { @@ -5323,6 +4458,7 @@ public HttpResponse createManualJournalAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -5338,9 +4474,9 @@ public HttpResponse createManualJournalAttachmentByFileNameForHttpResponse( logger.debug("PUT " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -5354,43 +4490,41 @@ public HttpResponse createManualJournalAttachmentByFileNameForHttpResponse( } /** - * Creates a specific attachment for a specific manual journal by file name + * Creates a history record for a specific manual journal * - *

200 - Success - return response of type Attachments array with a newly created - * Attachment for a ManualJournals + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param manualJournalID Unique identifier for a ManualJournal - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return HistoryRecords * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments createManualJournalAttachmentByFileName( + public HistoryRecords createManualJournalHistoryRecord( String accessToken, String xeroTenantId, UUID manualJournalID, - String fileName, - File body, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createManualJournalAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, manualJournalID, fileName, body, idempotencyKey); + createManualJournalHistoryRecordForHttpResponse( + accessToken, xeroTenantId, manualJournalID, historyRecords, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createManualJournalAttachmentByFileName -------------------"); + + " : createManualJournalHistoryRecord -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -5400,9 +4534,9 @@ public Attachments createManualJournalAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("HistoryRecords", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("HistoryRecords", object, e); } else { handler.execute(e); } @@ -5413,79 +4547,71 @@ public Attachments createManualJournalAttachmentByFileName( } /** - * Creates a specific attachment for a specific manual journal by file name + * Creates a history record for a specific manual journal * - *

200 - Success - return response of type Attachments array with a newly created - * Attachment for a ManualJournals + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param manualJournalID Unique identifier for a ManualJournal - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse createManualJournalAttachmentByFileNameForHttpResponse( + public HttpResponse createManualJournalHistoryRecordForHttpResponse( String accessToken, String xeroTenantId, UUID manualJournalID, - String fileName, - File body, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " createManualJournalAttachmentByFileName"); + + " createManualJournalHistoryRecord"); } // verify the required parameter 'manualJournalID' is set if (manualJournalID == null) { throw new IllegalArgumentException( "Missing the required parameter 'manualJournalID' when calling" - + " createManualJournalAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " createManualJournalAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + + " createManualJournalHistoryRecord"); + } // verify the required parameter 'historyRecords' is set + if (historyRecords == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " createManualJournalAttachmentByFileName"); + "Missing the required parameter 'historyRecords' when calling" + + " createManualJournalHistoryRecord"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " createManualJournalAttachmentByFileName"); + + " createManualJournalHistoryRecord"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); uriVariables.put("ManualJournalID", manualJournalID); - uriVariables.put("FileName", fileName); UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/ManualJournals/{ManualJournalID}/Attachments/{FileName}"); + UriBuilder.fromUri(apiClient.getBasePath() + "/ManualJournals/{ManualJournalID}/History"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(historyRecords); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -5499,41 +4625,42 @@ public HttpResponse createManualJournalAttachmentByFileNameForHttpResponse( } /** - * Creates a history record for a specific manual journal + * Creates one or more manual journals * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects + *

200 - Success - return response of type ManualJournals array with newly created + * ManualJournal * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param manualJournalID Unique identifier for a ManualJournal - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request + * @param manualJournals ManualJournals array with ManualJournal object in body of request + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return HistoryRecords + * @return ManualJournals * @throws IOException if an error occurs while attempting to invoke the API * */ - public HistoryRecords createManualJournalHistoryRecord( + public ManualJournals createManualJournals( String accessToken, String xeroTenantId, - UUID manualJournalID, - HistoryRecords historyRecords, + ManualJournals manualJournals, + Boolean summarizeErrors, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createManualJournalHistoryRecordForHttpResponse( - accessToken, xeroTenantId, manualJournalID, historyRecords, idempotencyKey); + createManualJournalsForHttpResponse( + accessToken, xeroTenantId, manualJournals, summarizeErrors, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createManualJournalHistoryRecord -------------------"); + + " : createManualJournals -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -5543,9 +4670,9 @@ public HistoryRecords createManualJournalHistoryRecord( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("HistoryRecords", object.getMessage(), e); + handler.validationError("ManualJournals", object.getMessage(), e); } - handler.validationError("HistoryRecords", object, e); + handler.validationError("ManualJournals", object, e); } else { handler.execute(e); } @@ -5556,142 +4683,7 @@ public HistoryRecords createManualJournalHistoryRecord( } /** - * Creates a history record for a specific manual journal - * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param manualJournalID Unique identifier for a ManualJournal - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse createManualJournalHistoryRecordForHttpResponse( - String accessToken, - String xeroTenantId, - UUID manualJournalID, - HistoryRecords historyRecords, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createManualJournalHistoryRecord"); - } // verify the required parameter 'manualJournalID' is set - if (manualJournalID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'manualJournalID' when calling" - + " createManualJournalHistoryRecord"); - } // verify the required parameter 'historyRecords' is set - if (historyRecords == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'historyRecords' when calling" - + " createManualJournalHistoryRecord"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createManualJournalHistoryRecord"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("ManualJournalID", manualJournalID); - - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/ManualJournals/{ManualJournalID}/History"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(historyRecords); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Creates one or more manual journals - * - *

200 - Success - return response of type ManualJournals array with newly created - * ManualJournal - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param manualJournals ManualJournals array with ManualJournal object in body of request - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return ManualJournals - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public ManualJournals createManualJournals( - String accessToken, - String xeroTenantId, - ManualJournals manualJournals, - Boolean summarizeErrors, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createManualJournalsForHttpResponse( - accessToken, xeroTenantId, manualJournals, summarizeErrors, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createManualJournals -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("ManualJournals", object.getMessage(), e); - } - handler.validationError("ManualJournals", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates one or more manual journals + * Creates one or more manual journals * *

200 - Success - return response of type ManualJournals array with newly created * ManualJournal @@ -5732,6 +4724,7 @@ public HttpResponse createManualJournalsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/ManualJournals"); if (summarizeErrors != null) { @@ -5890,6 +4883,7 @@ public HttpResponse createOverpaymentAllocationsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -6042,6 +5036,7 @@ public HttpResponse createOverpaymentHistoryForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -6155,6 +5150,7 @@ public HttpResponse createPaymentForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Payments"); String url = uriBuilder.build().toString(); @@ -6282,6 +5278,7 @@ public HttpResponse createPaymentHistoryForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -6404,6 +5401,7 @@ public HttpResponse createPaymentServiceForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/PaymentServices"); String url = uriBuilder.build().toString(); @@ -6525,6 +5523,7 @@ public HttpResponse createPaymentsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Payments"); if (summarizeErrors != null) { @@ -6681,6 +5680,7 @@ public HttpResponse createPrepaymentAllocationsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -6833,6 +5833,7 @@ public HttpResponse createPrepaymentHistoryForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -6861,8 +5862,6 @@ public HttpResponse createPrepaymentHistoryForHttpResponse( .execute(); } - // Overload params for createPurchaseOrderAttachmentByFileName to allow byte[] or File type to be - // passed as body /** * Creates attachment for a specific purchase order * @@ -6876,25 +5875,23 @@ public HttpResponse createPrepaymentHistoryForHttpResponse( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ public Attachments createPurchaseOrderAttachmentByFileName( String accessToken, String xeroTenantId, UUID purchaseOrderID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = createPurchaseOrderAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, purchaseOrderID, fileName, body, idempotencyKey, mimeType); + accessToken, xeroTenantId, purchaseOrderID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { @@ -6905,7 +5902,18 @@ public Attachments createPurchaseOrderAttachmentByFileName( logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -6925,19 +5933,17 @@ public Attachments createPurchaseOrderAttachmentByFileName( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ public HttpResponse createPurchaseOrderAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, UUID purchaseOrderID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { @@ -6969,6 +5975,7 @@ public HttpResponse createPurchaseOrderAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -6984,9 +5991,9 @@ public HttpResponse createPurchaseOrderAttachmentByFileNameForHttpResponse( logger.debug("PUT " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -7000,42 +6007,41 @@ public HttpResponse createPurchaseOrderAttachmentByFileNameForHttpResponse( } /** - * Creates attachment for a specific purchase order + * Creates a history record for a specific purchase orders * - *

200 - Success - return response of type Attachments array of Attachment + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param purchaseOrderID Unique identifier for an Purchase Order - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return HistoryRecords * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments createPurchaseOrderAttachmentByFileName( + public HistoryRecords createPurchaseOrderHistory( String accessToken, String xeroTenantId, UUID purchaseOrderID, - String fileName, - File body, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createPurchaseOrderAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, purchaseOrderID, fileName, body, idempotencyKey); + createPurchaseOrderHistoryForHttpResponse( + accessToken, xeroTenantId, purchaseOrderID, historyRecords, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createPurchaseOrderAttachmentByFileName -------------------"); + + " : createPurchaseOrderHistory -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -7045,9 +6051,9 @@ public Attachments createPurchaseOrderAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("HistoryRecords", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("HistoryRecords", object, e); } else { handler.execute(e); } @@ -7058,78 +6064,69 @@ public Attachments createPurchaseOrderAttachmentByFileName( } /** - * Creates attachment for a specific purchase order + * Creates a history record for a specific purchase orders * - *

200 - Success - return response of type Attachments array of Attachment + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param purchaseOrderID Unique identifier for an Purchase Order - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse createPurchaseOrderAttachmentByFileNameForHttpResponse( + public HttpResponse createPurchaseOrderHistoryForHttpResponse( String accessToken, String xeroTenantId, UUID purchaseOrderID, - String fileName, - File body, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createPurchaseOrderAttachmentByFileName"); + "Missing the required parameter 'xeroTenantId' when calling createPurchaseOrderHistory"); } // verify the required parameter 'purchaseOrderID' is set if (purchaseOrderID == null) { throw new IllegalArgumentException( "Missing the required parameter 'purchaseOrderID' when calling" - + " createPurchaseOrderAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " createPurchaseOrderAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + + " createPurchaseOrderHistory"); + } // verify the required parameter 'historyRecords' is set + if (historyRecords == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " createPurchaseOrderAttachmentByFileName"); + "Missing the required parameter 'historyRecords' when calling" + + " createPurchaseOrderHistory"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createPurchaseOrderAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling createPurchaseOrderHistory"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); uriVariables.put("PurchaseOrderID", purchaseOrderID); - uriVariables.put("FileName", fileName); UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/Attachments/{FileName}"); + UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/History"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(historyRecords); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -7143,41 +6140,42 @@ public HttpResponse createPurchaseOrderAttachmentByFileNameForHttpResponse( } /** - * Creates a history record for a specific purchase orders + * Creates one or more purchase orders * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects + *

200 - Success - return response of type PurchaseOrder array for specified + * PurchaseOrder * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrderID Unique identifier for an Purchase Order - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request + * @param purchaseOrders PurchaseOrders with an array of PurchaseOrder object in body of request + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return HistoryRecords + * @return PurchaseOrders * @throws IOException if an error occurs while attempting to invoke the API * */ - public HistoryRecords createPurchaseOrderHistory( + public PurchaseOrders createPurchaseOrders( String accessToken, String xeroTenantId, - UUID purchaseOrderID, - HistoryRecords historyRecords, + PurchaseOrders purchaseOrders, + Boolean summarizeErrors, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createPurchaseOrderHistoryForHttpResponse( - accessToken, xeroTenantId, purchaseOrderID, historyRecords, idempotencyKey); + createPurchaseOrdersForHttpResponse( + accessToken, xeroTenantId, purchaseOrders, summarizeErrors, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createPurchaseOrderHistory -------------------"); + + " : createPurchaseOrders -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -7187,142 +6185,9 @@ public HistoryRecords createPurchaseOrderHistory( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("HistoryRecords", object.getMessage(), e); + handler.validationError("PurchaseOrders", object.getMessage(), e); } - handler.validationError("HistoryRecords", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates a history record for a specific purchase orders - * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrderID Unique identifier for an Purchase Order - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse createPurchaseOrderHistoryForHttpResponse( - String accessToken, - String xeroTenantId, - UUID purchaseOrderID, - HistoryRecords historyRecords, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling createPurchaseOrderHistory"); - } // verify the required parameter 'purchaseOrderID' is set - if (purchaseOrderID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'purchaseOrderID' when calling" - + " createPurchaseOrderHistory"); - } // verify the required parameter 'historyRecords' is set - if (historyRecords == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'historyRecords' when calling" - + " createPurchaseOrderHistory"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling createPurchaseOrderHistory"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("PurchaseOrderID", purchaseOrderID); - - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/History"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(historyRecords); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Creates one or more purchase orders - * - *

200 - Success - return response of type PurchaseOrder array for specified - * PurchaseOrder - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrders PurchaseOrders with an array of PurchaseOrder object in body of request - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return PurchaseOrders - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public PurchaseOrders createPurchaseOrders( - String accessToken, - String xeroTenantId, - PurchaseOrders purchaseOrders, - Boolean summarizeErrors, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createPurchaseOrdersForHttpResponse( - accessToken, xeroTenantId, purchaseOrders, summarizeErrors, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createPurchaseOrders -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("PurchaseOrders", object.getMessage(), e); - } - handler.validationError("PurchaseOrders", object, e); + handler.validationError("PurchaseOrders", object, e); } else { handler.execute(e); } @@ -7374,6 +6239,7 @@ public HttpResponse createPurchaseOrdersForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders"); if (summarizeErrors != null) { @@ -7417,140 +6283,6 @@ public HttpResponse createPurchaseOrdersForHttpResponse( .execute(); } - // Overload params for createQuoteAttachmentByFileName to allow byte[] or File type to be passed - // as body - /** - * Creates attachment for a specific quote - * - *

200 - Success - return response of type Attachments array of Attachment - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param quoteID Unique identifier for an Quote - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param mimeType The type of file being attached - * @param accessToken Authorization token for user set in header of each request - * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API - */ - public Attachments createQuoteAttachmentByFileName( - String accessToken, - String xeroTenantId, - UUID quoteID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createQuoteAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, quoteID, fileName, body, idempotencyKey, mimeType); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createQuoteAttachmentByFileName -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates attachment for a specific quote - * - *

200 - Success - return response of type Attachments array of Attachment - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param quoteID Unique identifier for an Quote - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param mimeType The type of file being attached - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public HttpResponse createQuoteAttachmentByFileNameForHttpResponse( - String accessToken, - String xeroTenantId, - UUID quoteID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createQuoteAttachmentByFileName"); - } // verify the required parameter 'quoteID' is set - if (quoteID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'quoteID' when calling createQuoteAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling createQuoteAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling createQuoteAttachmentByFileName"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createQuoteAttachmentByFileName"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("QuoteID", quoteID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/Quotes/{QuoteID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - ByteArrayContent content = null; - - content = new ByteArrayContent(mimeType, body); - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - /** * Creates attachment for a specific quote * @@ -7661,6 +6393,7 @@ public HttpResponse createQuoteAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7674,10 +6407,10 @@ public HttpResponse createQuoteAttachmentByFileNameForHttpResponse( if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(body); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -7792,6 +6525,7 @@ public HttpResponse createQuoteHistoryForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7918,6 +6652,7 @@ public HttpResponse createQuotesForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Quotes"); if (summarizeErrors != null) { @@ -8058,6 +6793,7 @@ public HttpResponse createReceiptForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Receipts"); if (unitdp != null) { @@ -8101,145 +6837,6 @@ public HttpResponse createReceiptForHttpResponse( .execute(); } - // Overload params for createReceiptAttachmentByFileName to allow byte[] or File type to be passed - // as body - /** - * Creates an attachment on a specific expense claim receipts by file name - * - *

200 - Success - return response of type Attachments array with newly created - * Attachment for a specified Receipt - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param receiptID Unique identifier for a Receipt - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param mimeType The type of file being attached - * @param accessToken Authorization token for user set in header of each request - * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API - */ - public Attachments createReceiptAttachmentByFileName( - String accessToken, - String xeroTenantId, - UUID receiptID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createReceiptAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, receiptID, fileName, body, idempotencyKey, mimeType); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createReceiptAttachmentByFileName -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates an attachment on a specific expense claim receipts by file name - * - *

200 - Success - return response of type Attachments array with newly created - * Attachment for a specified Receipt - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param receiptID Unique identifier for a Receipt - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param mimeType The type of file being attached - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public HttpResponse createReceiptAttachmentByFileNameForHttpResponse( - String accessToken, - String xeroTenantId, - UUID receiptID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createReceiptAttachmentByFileName"); - } // verify the required parameter 'receiptID' is set - if (receiptID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'receiptID' when calling" - + " createReceiptAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " createReceiptAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling createReceiptAttachmentByFileName"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createReceiptAttachmentByFileName"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("ReceiptID", receiptID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/Receipts/{ReceiptID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - ByteArrayContent content = null; - - content = new ByteArrayContent(mimeType, body); - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - /** * Creates an attachment on a specific expense claim receipts by file name * @@ -8354,6 +6951,7 @@ public HttpResponse createReceiptAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -8368,10 +6966,10 @@ public HttpResponse createReceiptAttachmentByFileNameForHttpResponse( if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(body); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -8488,6 +7086,7 @@ public HttpResponse createReceiptHistoryForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -8516,8 +7115,6 @@ public HttpResponse createReceiptHistoryForHttpResponse( .execute(); } - // Overload params for createRepeatingInvoiceAttachmentByFileName to allow byte[] or File type to - // be passed as body /** * Creates an attachment from a specific repeating invoices by file name * @@ -8532,31 +7129,23 @@ public HttpResponse createReceiptHistoryForHttpResponse( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ public Attachments createRepeatingInvoiceAttachmentByFileName( String accessToken, String xeroTenantId, UUID repeatingInvoiceID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = createRepeatingInvoiceAttachmentByFileNameForHttpResponse( - accessToken, - xeroTenantId, - repeatingInvoiceID, - fileName, - body, - idempotencyKey, - mimeType); + accessToken, xeroTenantId, repeatingInvoiceID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { @@ -8567,7 +7156,18 @@ public Attachments createRepeatingInvoiceAttachmentByFileName( logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -8588,19 +7188,17 @@ public Attachments createRepeatingInvoiceAttachmentByFileName( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ public HttpResponse createRepeatingInvoiceAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, UUID repeatingInvoiceID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { @@ -8632,6 +7230,7 @@ public HttpResponse createRepeatingInvoiceAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -8648,9 +7247,9 @@ public HttpResponse createRepeatingInvoiceAttachmentByFileNameForHttpResponse( logger.debug("PUT " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -8664,43 +7263,41 @@ public HttpResponse createRepeatingInvoiceAttachmentByFileNameForHttpResponse( } /** - * Creates an attachment from a specific repeating invoices by file name + * Creates a history record for a specific repeating invoice * - *

200 - Success - return response of type Attachments array with updated Attachment for - * a specified Repeating Invoice + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param repeatingInvoiceID Unique identifier for a Repeating Invoice - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return HistoryRecords * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments createRepeatingInvoiceAttachmentByFileName( + public HistoryRecords createRepeatingInvoiceHistory( String accessToken, String xeroTenantId, UUID repeatingInvoiceID, - String fileName, - File body, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createRepeatingInvoiceAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, repeatingInvoiceID, fileName, body, idempotencyKey); + createRepeatingInvoiceHistoryForHttpResponse( + accessToken, xeroTenantId, repeatingInvoiceID, historyRecords, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createRepeatingInvoiceAttachmentByFileName -------------------"); + + " : createRepeatingInvoiceHistory -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -8710,9 +7307,9 @@ public Attachments createRepeatingInvoiceAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("HistoryRecords", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("HistoryRecords", object, e); } else { handler.execute(e); } @@ -8723,80 +7320,72 @@ public Attachments createRepeatingInvoiceAttachmentByFileName( } /** - * Creates an attachment from a specific repeating invoices by file name + * Creates a history record for a specific repeating invoice * - *

200 - Success - return response of type Attachments array with updated Attachment for - * a specified Repeating Invoice + *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param repeatingInvoiceID Unique identifier for a Repeating Invoice - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of + * request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse createRepeatingInvoiceAttachmentByFileNameForHttpResponse( + public HttpResponse createRepeatingInvoiceHistoryForHttpResponse( String accessToken, String xeroTenantId, UUID repeatingInvoiceID, - String fileName, - File body, + HistoryRecords historyRecords, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " createRepeatingInvoiceAttachmentByFileName"); + + " createRepeatingInvoiceHistory"); } // verify the required parameter 'repeatingInvoiceID' is set if (repeatingInvoiceID == null) { throw new IllegalArgumentException( "Missing the required parameter 'repeatingInvoiceID' when calling" - + " createRepeatingInvoiceAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " createRepeatingInvoiceAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + + " createRepeatingInvoiceHistory"); + } // verify the required parameter 'historyRecords' is set + if (historyRecords == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " createRepeatingInvoiceAttachmentByFileName"); + "Missing the required parameter 'historyRecords' when calling" + + " createRepeatingInvoiceHistory"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " createRepeatingInvoiceAttachmentByFileName"); + + " createRepeatingInvoiceHistory"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); uriVariables.put("RepeatingInvoiceID", repeatingInvoiceID); - uriVariables.put("FileName", fileName); UriBuilder uriBuilder = UriBuilder.fromUri( - apiClient.getBasePath() - + "/RepeatingInvoices/{RepeatingInvoiceID}/Attachments/{FileName}"); + apiClient.getBasePath() + "/RepeatingInvoices/{RepeatingInvoiceID}/History"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("PUT " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(historyRecords); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -8810,41 +7399,43 @@ public HttpResponse createRepeatingInvoiceAttachmentByFileNameForHttpResponse( } /** - * Creates a history record for a specific repeating invoice + * Creates one or more repeating invoice templates * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects + *

200 - Success - return response of type RepeatingInvoices array with newly created + * RepeatingInvoice * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param repeatingInvoiceID Unique identifier for a Repeating Invoice - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request + * @param repeatingInvoices RepeatingInvoices with an array of repeating invoice objects in body + * of request + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return HistoryRecords + * @return RepeatingInvoices * @throws IOException if an error occurs while attempting to invoke the API * */ - public HistoryRecords createRepeatingInvoiceHistory( + public RepeatingInvoices createRepeatingInvoices( String accessToken, String xeroTenantId, - UUID repeatingInvoiceID, - HistoryRecords historyRecords, + RepeatingInvoices repeatingInvoices, + Boolean summarizeErrors, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - createRepeatingInvoiceHistoryForHttpResponse( - accessToken, xeroTenantId, repeatingInvoiceID, historyRecords, idempotencyKey); + createRepeatingInvoicesForHttpResponse( + accessToken, xeroTenantId, repeatingInvoices, summarizeErrors, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : createRepeatingInvoiceHistory -------------------"); + + " : createRepeatingInvoices -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -8854,9 +7445,9 @@ public HistoryRecords createRepeatingInvoiceHistory( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("HistoryRecords", object.getMessage(), e); + handler.validationError("RepeatingInvoices", object.getMessage(), e); } - handler.validationError("HistoryRecords", object, e); + handler.validationError("RepeatingInvoices", object, e); } else { handler.execute(e); } @@ -8867,144 +7458,7 @@ public HistoryRecords createRepeatingInvoiceHistory( } /** - * Creates a history record for a specific repeating invoice - * - *

200 - Success - return response of type HistoryRecords array of HistoryRecord objects - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param repeatingInvoiceID Unique identifier for a Repeating Invoice - * @param historyRecords HistoryRecords containing an array of HistoryRecord objects in body of - * request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse createRepeatingInvoiceHistoryForHttpResponse( - String accessToken, - String xeroTenantId, - UUID repeatingInvoiceID, - HistoryRecords historyRecords, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " createRepeatingInvoiceHistory"); - } // verify the required parameter 'repeatingInvoiceID' is set - if (repeatingInvoiceID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'repeatingInvoiceID' when calling" - + " createRepeatingInvoiceHistory"); - } // verify the required parameter 'historyRecords' is set - if (historyRecords == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'historyRecords' when calling" - + " createRepeatingInvoiceHistory"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " createRepeatingInvoiceHistory"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("RepeatingInvoiceID", repeatingInvoiceID); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/RepeatingInvoices/{RepeatingInvoiceID}/History"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("PUT " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(historyRecords); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.PUT, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Creates one or more repeating invoice templates - * - *

200 - Success - return response of type RepeatingInvoices array with newly created - * RepeatingInvoice - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param repeatingInvoices RepeatingInvoices with an array of repeating invoice objects in body - * of request - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return RepeatingInvoices - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public RepeatingInvoices createRepeatingInvoices( - String accessToken, - String xeroTenantId, - RepeatingInvoices repeatingInvoices, - Boolean summarizeErrors, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - createRepeatingInvoicesForHttpResponse( - accessToken, xeroTenantId, repeatingInvoices, summarizeErrors, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : createRepeatingInvoices -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("RepeatingInvoices", object.getMessage(), e); - } - handler.validationError("RepeatingInvoices", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates one or more repeating invoice templates + * Creates one or more repeating invoice templates * *

200 - Success - return response of type RepeatingInvoices array with newly created * RepeatingInvoice @@ -9047,6 +7501,7 @@ public HttpResponse createRepeatingInvoicesForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/RepeatingInvoices"); if (summarizeErrors != null) { @@ -9175,6 +7630,7 @@ public HttpResponse createTaxRatesForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/TaxRates"); String url = uriBuilder.build().toString(); @@ -9292,6 +7748,7 @@ public HttpResponse createTrackingCategoryForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/TrackingCategories"); String url = uriBuilder.build().toString(); @@ -9417,6 +7874,7 @@ public HttpResponse createTrackingOptionsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -9642,6 +8100,7 @@ public HttpResponse deleteBatchPaymentForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/BatchPayments"); String url = uriBuilder.build().toString(); @@ -9761,6 +8220,7 @@ public HttpResponse deleteBatchPaymentByUrlParamForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -10451,6 +8911,7 @@ public HttpResponse deletePaymentForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -10876,6 +9337,7 @@ public HttpResponse emailInvoiceForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -26524,6 +24986,7 @@ public HttpResponse postSetupForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Setup"); String url = uriBuilder.build().toString(); @@ -26649,6 +25112,7 @@ public HttpResponse updateAccountForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -26676,8 +25140,6 @@ public HttpResponse updateAccountForHttpResponse( .execute(); } - // Overload params for updateAccountAttachmentByFileName to allow byte[] or File type to be passed - // as body /** * Updates attachment on a specific account by filename * @@ -26691,25 +25153,23 @@ public HttpResponse updateAccountForHttpResponse( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ public Attachments updateAccountAttachmentByFileName( String accessToken, String xeroTenantId, UUID accountID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = updateAccountAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, accountID, fileName, body, idempotencyKey, mimeType); + accessToken, xeroTenantId, accountID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { @@ -26720,7 +25180,18 @@ public Attachments updateAccountAttachmentByFileName( logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -26740,19 +25211,17 @@ public Attachments updateAccountAttachmentByFileName( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ public HttpResponse updateAccountAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, UUID accountID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { @@ -26783,6 +25252,7 @@ public HttpResponse updateAccountAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -26798,9 +25268,9 @@ public HttpResponse updateAccountAttachmentByFileNameForHttpResponse( logger.debug("POST " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -26814,42 +25284,49 @@ public HttpResponse updateAccountAttachmentByFileNameForHttpResponse( } /** - * Updates attachment on a specific account by filename + * Updates a single spent or received money transaction * - *

200 - Success - return response of type Attachments array of Attachment + *

200 - Success - return response of type BankTransactions array with updated + * BankTransaction * - *

400 - Validation Error - some data was incorrect returns response of type Error + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param accountID Unique identifier for Account object - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param bankTransactionID Xero generated unique identifier for a bank transaction + * @param bankTransactions The bankTransactions parameter + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return BankTransactions * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateAccountAttachmentByFileName( + public BankTransactions updateBankTransaction( String accessToken, String xeroTenantId, - UUID accountID, - String fileName, - File body, + UUID bankTransactionID, + BankTransactions bankTransactions, + Integer unitdp, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateAccountAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, accountID, fileName, body, idempotencyKey); + updateBankTransactionForHttpResponse( + accessToken, + xeroTenantId, + bankTransactionID, + bankTransactions, + unitdp, + idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateAccountAttachmentByFileName -------------------"); + + " : updateBankTransaction -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -26859,9 +25336,9 @@ public Attachments updateAccountAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("BankTransactions", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("BankTransactions", object, e); } else { handler.execute(e); } @@ -26872,206 +25349,58 @@ public Attachments updateAccountAttachmentByFileName( } /** - * Updates attachment on a specific account by filename + * Updates a single spent or received money transaction * - *

200 - Success - return response of type Attachments array of Attachment + *

200 - Success - return response of type BankTransactions array with updated + * BankTransaction * - *

400 - Validation Error - some data was incorrect returns response of type Error + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param accountID Unique identifier for Account object - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param bankTransactionID Xero generated unique identifier for a bank transaction + * @param bankTransactions The bankTransactions parameter + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateAccountAttachmentByFileNameForHttpResponse( + public HttpResponse updateBankTransactionForHttpResponse( String accessToken, String xeroTenantId, - UUID accountID, - String fileName, - File body, + UUID bankTransactionID, + BankTransactions bankTransactions, + Integer unitdp, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateAccountAttachmentByFileName"); - } // verify the required parameter 'accountID' is set - if (accountID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accountID' when calling" - + " updateAccountAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { + "Missing the required parameter 'xeroTenantId' when calling updateBankTransaction"); + } // verify the required parameter 'bankTransactionID' is set + if (bankTransactionID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updateAccountAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + "Missing the required parameter 'bankTransactionID' when calling updateBankTransaction"); + } // verify the required parameter 'bankTransactions' is set + if (bankTransactions == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling updateAccountAttachmentByFileName"); + "Missing the required parameter 'bankTransactions' when calling updateBankTransaction"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateAccountAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling updateBankTransaction"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("AccountID", accountID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/Accounts/{AccountID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); - HttpContent content = null; - content = new FileContent(mimeType, body); - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Updates a single spent or received money transaction - * - *

200 - Success - return response of type BankTransactions array with updated - * BankTransaction - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param bankTransactionID Xero generated unique identifier for a bank transaction - * @param bankTransactions The bankTransactions parameter - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return BankTransactions - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public BankTransactions updateBankTransaction( - String accessToken, - String xeroTenantId, - UUID bankTransactionID, - BankTransactions bankTransactions, - Integer unitdp, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateBankTransactionForHttpResponse( - accessToken, - xeroTenantId, - bankTransactionID, - bankTransactions, - unitdp, - idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateBankTransaction -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("BankTransactions", object.getMessage(), e); - } - handler.validationError("BankTransactions", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Updates a single spent or received money transaction - * - *

200 - Success - return response of type BankTransactions array with updated - * BankTransaction - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param bankTransactionID Xero generated unique identifier for a bank transaction - * @param bankTransactions The bankTransactions parameter - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse updateBankTransactionForHttpResponse( - String accessToken, - String xeroTenantId, - UUID bankTransactionID, - BankTransactions bankTransactions, - Integer unitdp, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateBankTransaction"); - } // verify the required parameter 'bankTransactionID' is set - if (bankTransactionID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'bankTransactionID' when calling updateBankTransaction"); - } // verify the required parameter 'bankTransactions' is set - if (bankTransactions == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'bankTransactions' when calling updateBankTransaction"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateBankTransaction"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("BankTransactionID", bankTransactionID); + uriVariables.put("BankTransactionID", bankTransactionID); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/BankTransactions/{BankTransactionID}"); @@ -27116,8 +25445,6 @@ public HttpResponse updateBankTransactionForHttpResponse( .execute(); } - // Overload params for updateBankTransactionAttachmentByFileName to allow byte[] or File type to - // be passed as body /** * Updates a specific attachment from a specific bank transaction by filename * @@ -27131,31 +25458,23 @@ public HttpResponse updateBankTransactionForHttpResponse( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ public Attachments updateBankTransactionAttachmentByFileName( String accessToken, String xeroTenantId, UUID bankTransactionID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = updateBankTransactionAttachmentByFileNameForHttpResponse( - accessToken, - xeroTenantId, - bankTransactionID, - fileName, - body, - idempotencyKey, - mimeType); + accessToken, xeroTenantId, bankTransactionID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { @@ -27166,7 +25485,18 @@ public Attachments updateBankTransactionAttachmentByFileName( logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -27186,19 +25516,17 @@ public Attachments updateBankTransactionAttachmentByFileName( * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ public HttpResponse updateBankTransactionAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, UUID bankTransactionID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { @@ -27230,6 +25558,7 @@ public HttpResponse updateBankTransactionAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -27246,9 +25575,9 @@ public HttpResponse updateBankTransactionAttachmentByFileNameForHttpResponse( logger.debug("POST " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -27262,14 +25591,13 @@ public HttpResponse updateBankTransactionAttachmentByFileNameForHttpResponse( } /** - * Updates a specific attachment from a specific bank transaction by filename - * - *

200 - Success - return response of Attachments array of Attachment + * 200 - Success - return response of Attachments array of 0 to N Attachment for a Bank + * Transfer * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param bankTransactionID Xero generated unique identifier for a bank transaction + * @param bankTransferID Xero generated unique identifier for a bank transfer * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate @@ -27278,10 +25606,10 @@ public HttpResponse updateBankTransactionAttachmentByFileNameForHttpResponse( * @return Attachments * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateBankTransactionAttachmentByFileName( + public Attachments updateBankTransferAttachmentByFileName( String accessToken, String xeroTenantId, - UUID bankTransactionID, + UUID bankTransferID, String fileName, File body, String idempotencyKey) @@ -27289,15 +25617,15 @@ public Attachments updateBankTransactionAttachmentByFileName( try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateBankTransactionAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, bankTransactionID, fileName, body, idempotencyKey); + updateBankTransferAttachmentByFileNameForHttpResponse( + accessToken, xeroTenantId, bankTransferID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateBankTransactionAttachmentByFileName -------------------"); + + " : updateBankTransferAttachmentByFileName -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -27320,14 +25648,13 @@ public Attachments updateBankTransactionAttachmentByFileName( } /** - * Updates a specific attachment from a specific bank transaction by filename - * - *

200 - Success - return response of Attachments array of Attachment + * 200 - Success - return response of Attachments array of 0 to N Attachment for a Bank + * Transfer * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param bankTransactionID Xero generated unique identifier for a bank transaction + * @param bankTransferID Xero generated unique identifier for a bank transfer * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate @@ -27336,10 +25663,10 @@ public Attachments updateBankTransactionAttachmentByFileName( * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateBankTransactionAttachmentByFileNameForHttpResponse( + public HttpResponse updateBankTransferAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, - UUID bankTransactionID, + UUID bankTransferID, String fileName, File body, String idempotencyKey) @@ -27348,51 +25675,51 @@ public HttpResponse updateBankTransactionAttachmentByFileNameForHttpResponse( if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " updateBankTransactionAttachmentByFileName"); - } // verify the required parameter 'bankTransactionID' is set - if (bankTransactionID == null) { + + " updateBankTransferAttachmentByFileName"); + } // verify the required parameter 'bankTransferID' is set + if (bankTransferID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'bankTransactionID' when calling" - + " updateBankTransactionAttachmentByFileName"); + "Missing the required parameter 'bankTransferID' when calling" + + " updateBankTransferAttachmentByFileName"); } // verify the required parameter 'fileName' is set if (fileName == null) { throw new IllegalArgumentException( "Missing the required parameter 'fileName' when calling" - + " updateBankTransactionAttachmentByFileName"); + + " updateBankTransferAttachmentByFileName"); } // verify the required parameter 'body' is set if (body == null) { throw new IllegalArgumentException( "Missing the required parameter 'body' when calling" - + " updateBankTransactionAttachmentByFileName"); + + " updateBankTransferAttachmentByFileName"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " updateBankTransactionAttachmentByFileName"); + + " updateBankTransferAttachmentByFileName"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("BankTransactionID", bankTransactionID); + uriVariables.put("BankTransferID", bankTransferID); uriVariables.put("FileName", fileName); UriBuilder uriBuilder = UriBuilder.fromUri( - apiClient.getBasePath() - + "/BankTransactions/{BankTransactionID}/Attachments/{FileName}"); + apiClient.getBasePath() + "/BankTransfers/{BankTransferID}/Attachments/{FileName}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(body); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -27405,50 +25732,56 @@ public HttpResponse updateBankTransactionAttachmentByFileNameForHttpResponse( .execute(); } - // Overload params for updateBankTransferAttachmentByFileName to allow byte[] or File type to be - // passed as body /** - * 200 - Success - return response of Attachments array of 0 to N Attachment for a Bank - * Transfer + * Updates a specific contact in a Xero organisation + * + *

200 - Success - return response of type Contacts array with an updated Contact * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param bankTransferID Xero generated unique identifier for a bank transfer - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param contactID Unique identifier for a Contact + * @param contacts an array of Contacts containing single Contact object with properties to update * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request - * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @return Contacts + * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateBankTransferAttachmentByFileName( + public Contacts updateContact( String accessToken, String xeroTenantId, - UUID bankTransferID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + UUID contactID, + Contacts contacts, + String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateBankTransferAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, bankTransferID, fileName, body, idempotencyKey, mimeType); + updateContactForHttpResponse( + accessToken, xeroTenantId, contactID, contacts, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateBankTransferAttachmentByFileName -------------------"); + + " : updateContact -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Contacts", object.getMessage(), e); + } + handler.validationError("Contacts", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -27456,79 +25789,65 @@ public Attachments updateBankTransferAttachmentByFileName( } /** - * 200 - Success - return response of Attachments array of 0 to N Attachment for a Bank - * Transfer + * Updates a specific contact in a Xero organisation + * + *

200 - Success - return response of type Contacts array with an updated Contact * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param bankTransferID Xero generated unique identifier for a bank transfer - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param contactID Unique identifier for a Contact + * @param contacts an array of Contacts containing single Contact object with properties to update * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateBankTransferAttachmentByFileNameForHttpResponse( + public HttpResponse updateContactForHttpResponse( String accessToken, String xeroTenantId, - UUID bankTransferID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + UUID contactID, + Contacts contacts, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateBankTransferAttachmentByFileName"); - } // verify the required parameter 'bankTransferID' is set - if (bankTransferID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'bankTransferID' when calling" - + " updateBankTransferAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { + "Missing the required parameter 'xeroTenantId' when calling updateContact"); + } // verify the required parameter 'contactID' is set + if (contactID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updateBankTransferAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + "Missing the required parameter 'contactID' when calling updateContact"); + } // verify the required parameter 'contacts' is set + if (contacts == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " updateBankTransferAttachmentByFileName"); + "Missing the required parameter 'contacts' when calling updateContact"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateBankTransferAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling updateContact"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("BankTransferID", bankTransferID); - uriVariables.put("FileName", fileName); + uriVariables.put("ContactID", contactID); - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/BankTransfers/{BankTransferID}/Attachments/{FileName}"); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Contacts/{ContactID}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(contacts); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -27542,13 +25861,12 @@ public HttpResponse updateBankTransferAttachmentByFileNameForHttpResponse( } /** - * 200 - Success - return response of Attachments array of 0 to N Attachment for a Bank - * Transfer + * 200 - Success - return response of type Attachments array with an updated Attachment * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param bankTransferID Xero generated unique identifier for a bank transfer + * @param contactID Unique identifier for a Contact * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate @@ -27557,10 +25875,10 @@ public HttpResponse updateBankTransferAttachmentByFileNameForHttpResponse( * @return Attachments * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateBankTransferAttachmentByFileName( + public Attachments updateContactAttachmentByFileName( String accessToken, String xeroTenantId, - UUID bankTransferID, + UUID contactID, String fileName, File body, String idempotencyKey) @@ -27568,15 +25886,15 @@ public Attachments updateBankTransferAttachmentByFileName( try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateBankTransferAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, bankTransferID, fileName, body, idempotencyKey); + updateContactAttachmentByFileNameForHttpResponse( + accessToken, xeroTenantId, contactID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateBankTransferAttachmentByFileName -------------------"); + + " : updateContactAttachmentByFileName -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -27599,13 +25917,12 @@ public Attachments updateBankTransferAttachmentByFileName( } /** - * 200 - Success - return response of Attachments array of 0 to N Attachment for a Bank - * Transfer + * 200 - Success - return response of type Attachments array with an updated Attachment * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param bankTransferID Xero generated unique identifier for a bank transfer + * @param contactID Unique identifier for a Contact * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate @@ -27614,10 +25931,10 @@ public Attachments updateBankTransferAttachmentByFileName( * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateBankTransferAttachmentByFileNameForHttpResponse( + public HttpResponse updateContactAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, - UUID bankTransferID, + UUID contactID, String fileName, File body, String idempotencyKey) @@ -27626,50 +25943,50 @@ public HttpResponse updateBankTransferAttachmentByFileNameForHttpResponse( if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " updateBankTransferAttachmentByFileName"); - } // verify the required parameter 'bankTransferID' is set - if (bankTransferID == null) { + + " updateContactAttachmentByFileName"); + } // verify the required parameter 'contactID' is set + if (contactID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'bankTransferID' when calling" - + " updateBankTransferAttachmentByFileName"); + "Missing the required parameter 'contactID' when calling" + + " updateContactAttachmentByFileName"); } // verify the required parameter 'fileName' is set if (fileName == null) { throw new IllegalArgumentException( "Missing the required parameter 'fileName' when calling" - + " updateBankTransferAttachmentByFileName"); + + " updateContactAttachmentByFileName"); } // verify the required parameter 'body' is set if (body == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " updateBankTransferAttachmentByFileName"); + "Missing the required parameter 'body' when calling updateContactAttachmentByFileName"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " updateBankTransferAttachmentByFileName"); + + " updateContactAttachmentByFileName"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("BankTransferID", bankTransferID); + uriVariables.put("ContactID", contactID); uriVariables.put("FileName", fileName); UriBuilder uriBuilder = UriBuilder.fromUri( - apiClient.getBasePath() + "/BankTransfers/{BankTransferID}/Attachments/{FileName}"); + apiClient.getBasePath() + "/Contacts/{ContactID}/Attachments/{FileName}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(body); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -27683,40 +26000,40 @@ public HttpResponse updateBankTransferAttachmentByFileNameForHttpResponse( } /** - * Updates a specific contact in a Xero organisation + * Updates a specific contact group * - *

200 - Success - return response of type Contacts array with an updated Contact + *

200 - Success - return response of type Contact Groups array of updated Contact Group * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param contactID Unique identifier for a Contact - * @param contacts an array of Contacts containing single Contact object with properties to update + * @param contactGroupID Unique identifier for a Contact Group + * @param contactGroups an array of Contact groups with Name of specific group to update * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Contacts + * @return ContactGroups * @throws IOException if an error occurs while attempting to invoke the API * */ - public Contacts updateContact( + public ContactGroups updateContactGroup( String accessToken, String xeroTenantId, - UUID contactID, - Contacts contacts, + UUID contactGroupID, + ContactGroups contactGroups, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateContactForHttpResponse( - accessToken, xeroTenantId, contactID, contacts, idempotencyKey); + updateContactGroupForHttpResponse( + accessToken, xeroTenantId, contactGroupID, contactGroups, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateContact -------------------"); + + " : updateContactGroup -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -27726,9 +26043,9 @@ public Contacts updateContact( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Contacts", object.getMessage(), e); + handler.validationError("ContactGroups", object.getMessage(), e); } - handler.validationError("Contacts", object, e); + handler.validationError("ContactGroups", object, e); } else { handler.execute(e); } @@ -27739,55 +26056,57 @@ public Contacts updateContact( } /** - * Updates a specific contact in a Xero organisation + * Updates a specific contact group * - *

200 - Success - return response of type Contacts array with an updated Contact + *

200 - Success - return response of type Contact Groups array of updated Contact Group * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param contactID Unique identifier for a Contact - * @param contacts an array of Contacts containing single Contact object with properties to update + * @param contactGroupID Unique identifier for a Contact Group + * @param contactGroups an array of Contact groups with Name of specific group to update * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateContactForHttpResponse( + public HttpResponse updateContactGroupForHttpResponse( String accessToken, String xeroTenantId, - UUID contactID, - Contacts contacts, + UUID contactGroupID, + ContactGroups contactGroups, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateContact"); - } // verify the required parameter 'contactID' is set - if (contactID == null) { + "Missing the required parameter 'xeroTenantId' when calling updateContactGroup"); + } // verify the required parameter 'contactGroupID' is set + if (contactGroupID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'contactID' when calling updateContact"); - } // verify the required parameter 'contacts' is set - if (contacts == null) { + "Missing the required parameter 'contactGroupID' when calling updateContactGroup"); + } // verify the required parameter 'contactGroups' is set + if (contactGroups == null) { throw new IllegalArgumentException( - "Missing the required parameter 'contacts' when calling updateContact"); + "Missing the required parameter 'contactGroups' when calling updateContactGroup"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateContact"); + "Missing the required parameter 'accessToken' when calling updateContactGroup"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("ContactID", contactID); + uriVariables.put("ContactGroupID", contactGroupID); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Contacts/{ContactID}"); + UriBuilder uriBuilder = + UriBuilder.fromUri(apiClient.getBasePath() + "/ContactGroups/{ContactGroupID}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { @@ -27795,7 +26114,7 @@ public HttpResponse updateContactForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(contacts); + content = apiClient.new JacksonJsonHttpContent(contactGroups); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -27809,49 +26128,59 @@ public HttpResponse updateContactForHttpResponse( .execute(); } - // Overload params for updateContactAttachmentByFileName to allow byte[] or File type to be passed - // as body /** - * 200 - Success - return response of type Attachments array with an updated Attachment + * Updates a specific credit note + * + *

200 - Success - return response of type Credit Notes array with updated CreditNote * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param contactID Unique identifier for a Contact - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param creditNoteID Unique identifier for a Credit Note + * @param creditNotes an array of Credit Notes containing credit note details to update + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request - * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @return CreditNotes + * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateContactAttachmentByFileName( + public CreditNotes updateCreditNote( String accessToken, String xeroTenantId, - UUID contactID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + UUID creditNoteID, + CreditNotes creditNotes, + Integer unitdp, + String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateContactAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, contactID, fileName, body, idempotencyKey, mimeType); + updateCreditNoteForHttpResponse( + accessToken, xeroTenantId, creditNoteID, creditNotes, unitdp, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateContactAttachmentByFileName -------------------"); + + " : updateCreditNote -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("CreditNotes", object.getMessage(), e); + } + handler.validationError("CreditNotes", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -27859,77 +26188,89 @@ public Attachments updateContactAttachmentByFileName( } /** - * 200 - Success - return response of type Attachments array with an updated Attachment + * Updates a specific credit note + * + *

200 - Success - return response of type Credit Notes array with updated CreditNote * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param contactID Unique identifier for a Contact - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param creditNoteID Unique identifier for a Credit Note + * @param creditNotes an array of Credit Notes containing credit note details to update + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateContactAttachmentByFileNameForHttpResponse( + public HttpResponse updateCreditNoteForHttpResponse( String accessToken, String xeroTenantId, - UUID contactID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + UUID creditNoteID, + CreditNotes creditNotes, + Integer unitdp, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateContactAttachmentByFileName"); - } // verify the required parameter 'contactID' is set - if (contactID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'contactID' when calling" - + " updateContactAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { + "Missing the required parameter 'xeroTenantId' when calling updateCreditNote"); + } // verify the required parameter 'creditNoteID' is set + if (creditNoteID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updateContactAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + "Missing the required parameter 'creditNoteID' when calling updateCreditNote"); + } // verify the required parameter 'creditNotes' is set + if (creditNotes == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling updateContactAttachmentByFileName"); + "Missing the required parameter 'creditNotes' when calling updateCreditNote"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateContactAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling updateCreditNote"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("ContactID", contactID); - uriVariables.put("FileName", fileName); + uriVariables.put("CreditNoteID", creditNoteID); UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/Contacts/{ContactID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); + UriBuilder.fromUri(apiClient.getBasePath() + "/CreditNotes/{CreditNoteID}"); + if (unitdp != null) { + String key = "unitdp"; + Object value = unitdp; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } + String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(creditNotes); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -27943,12 +26284,15 @@ public HttpResponse updateContactAttachmentByFileNameForHttpResponse( } /** - * 200 - Success - return response of type Attachments array with an updated Attachment + * Updates attachments on a specific credit note by file name + * + *

200 - Success - return response of type Attachments array with updated Attachment for + * specific Credit Note * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param contactID Unique identifier for a Contact + * @param creditNoteID Unique identifier for a Credit Note * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate @@ -27957,10 +26301,10 @@ public HttpResponse updateContactAttachmentByFileNameForHttpResponse( * @return Attachments * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateContactAttachmentByFileName( + public Attachments updateCreditNoteAttachmentByFileName( String accessToken, String xeroTenantId, - UUID contactID, + UUID creditNoteID, String fileName, File body, String idempotencyKey) @@ -27968,15 +26312,15 @@ public Attachments updateContactAttachmentByFileName( try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateContactAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, contactID, fileName, body, idempotencyKey); + updateCreditNoteAttachmentByFileNameForHttpResponse( + accessToken, xeroTenantId, creditNoteID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateContactAttachmentByFileName -------------------"); + + " : updateCreditNoteAttachmentByFileName -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -27999,12 +26343,15 @@ public Attachments updateContactAttachmentByFileName( } /** - * 200 - Success - return response of type Attachments array with an updated Attachment + * Updates attachments on a specific credit note by file name + * + *

200 - Success - return response of type Attachments array with updated Attachment for + * specific Credit Note * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param contactID Unique identifier for a Contact + * @param creditNoteID Unique identifier for a Credit Note * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate @@ -28013,10 +26360,10 @@ public Attachments updateContactAttachmentByFileName( * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateContactAttachmentByFileNameForHttpResponse( + public HttpResponse updateCreditNoteAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, - UUID contactID, + UUID creditNoteID, String fileName, File body, String idempotencyKey) @@ -28025,49 +26372,51 @@ public HttpResponse updateContactAttachmentByFileNameForHttpResponse( if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " updateContactAttachmentByFileName"); - } // verify the required parameter 'contactID' is set - if (contactID == null) { + + " updateCreditNoteAttachmentByFileName"); + } // verify the required parameter 'creditNoteID' is set + if (creditNoteID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'contactID' when calling" - + " updateContactAttachmentByFileName"); + "Missing the required parameter 'creditNoteID' when calling" + + " updateCreditNoteAttachmentByFileName"); } // verify the required parameter 'fileName' is set if (fileName == null) { throw new IllegalArgumentException( "Missing the required parameter 'fileName' when calling" - + " updateContactAttachmentByFileName"); + + " updateCreditNoteAttachmentByFileName"); } // verify the required parameter 'body' is set if (body == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling updateContactAttachmentByFileName"); + "Missing the required parameter 'body' when calling" + + " updateCreditNoteAttachmentByFileName"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " updateContactAttachmentByFileName"); + + " updateCreditNoteAttachmentByFileName"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("ContactID", contactID); + uriVariables.put("CreditNoteID", creditNoteID); uriVariables.put("FileName", fileName); UriBuilder uriBuilder = UriBuilder.fromUri( - apiClient.getBasePath() + "/Contacts/{ContactID}/Attachments/{FileName}"); + apiClient.getBasePath() + "/CreditNotes/{CreditNoteID}/Attachments/{FileName}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(body); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -28081,40 +26430,40 @@ public HttpResponse updateContactAttachmentByFileNameForHttpResponse( } /** - * Updates a specific contact group + * Updates a specific expense claims * - *

200 - Success - return response of type Contact Groups array of updated Contact Group + *

200 - Success - return response of type ExpenseClaims array with updated ExpenseClaim * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param contactGroupID Unique identifier for a Contact Group - * @param contactGroups an array of Contact groups with Name of specific group to update + * @param expenseClaimID Unique identifier for a ExpenseClaim + * @param expenseClaims The expenseClaims parameter * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return ContactGroups + * @return ExpenseClaims * @throws IOException if an error occurs while attempting to invoke the API * */ - public ContactGroups updateContactGroup( + public ExpenseClaims updateExpenseClaim( String accessToken, String xeroTenantId, - UUID contactGroupID, - ContactGroups contactGroups, + UUID expenseClaimID, + ExpenseClaims expenseClaims, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateContactGroupForHttpResponse( - accessToken, xeroTenantId, contactGroupID, contactGroups, idempotencyKey); + updateExpenseClaimForHttpResponse( + accessToken, xeroTenantId, expenseClaimID, expenseClaims, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateContactGroup -------------------"); + + " : updateExpenseClaim -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -28124,9 +26473,9 @@ public ContactGroups updateContactGroup( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("ContactGroups", object.getMessage(), e); + handler.validationError("ExpenseClaims", object.getMessage(), e); } - handler.validationError("ContactGroups", object, e); + handler.validationError("ExpenseClaims", object, e); } else { handler.execute(e); } @@ -28137,56 +26486,57 @@ public ContactGroups updateContactGroup( } /** - * Updates a specific contact group + * Updates a specific expense claims * - *

200 - Success - return response of type Contact Groups array of updated Contact Group + *

200 - Success - return response of type ExpenseClaims array with updated ExpenseClaim * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param contactGroupID Unique identifier for a Contact Group - * @param contactGroups an array of Contact groups with Name of specific group to update + * @param expenseClaimID Unique identifier for a ExpenseClaim + * @param expenseClaims The expenseClaims parameter * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateContactGroupForHttpResponse( + public HttpResponse updateExpenseClaimForHttpResponse( String accessToken, String xeroTenantId, - UUID contactGroupID, - ContactGroups contactGroups, + UUID expenseClaimID, + ExpenseClaims expenseClaims, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateContactGroup"); - } // verify the required parameter 'contactGroupID' is set - if (contactGroupID == null) { + "Missing the required parameter 'xeroTenantId' when calling updateExpenseClaim"); + } // verify the required parameter 'expenseClaimID' is set + if (expenseClaimID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'contactGroupID' when calling updateContactGroup"); - } // verify the required parameter 'contactGroups' is set - if (contactGroups == null) { + "Missing the required parameter 'expenseClaimID' when calling updateExpenseClaim"); + } // verify the required parameter 'expenseClaims' is set + if (expenseClaims == null) { throw new IllegalArgumentException( - "Missing the required parameter 'contactGroups' when calling updateContactGroup"); + "Missing the required parameter 'expenseClaims' when calling updateExpenseClaim"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateContactGroup"); + "Missing the required parameter 'accessToken' when calling updateExpenseClaim"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("ContactGroupID", contactGroupID); + uriVariables.put("ExpenseClaimID", expenseClaimID); UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/ContactGroups/{ContactGroupID}"); + UriBuilder.fromUri(apiClient.getBasePath() + "/ExpenseClaims/{ExpenseClaimID}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { @@ -28194,7 +26544,7 @@ public HttpResponse updateContactGroupForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(contactGroups); + content = apiClient.new JacksonJsonHttpContent(expenseClaims); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -28209,43 +26559,43 @@ public HttpResponse updateContactGroupForHttpResponse( } /** - * Updates a specific credit note + * Updates a specific sales invoices or purchase bills * - *

200 - Success - return response of type Credit Notes array with updated CreditNote + *

200 - Success - return response of type Invoices array with updated Invoice * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param creditNoteID Unique identifier for a Credit Note - * @param creditNotes an array of Credit Notes containing credit note details to update + * @param invoiceID Unique identifier for an Invoice + * @param invoices The invoices parameter * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return CreditNotes + * @return Invoices * @throws IOException if an error occurs while attempting to invoke the API * */ - public CreditNotes updateCreditNote( + public Invoices updateInvoice( String accessToken, String xeroTenantId, - UUID creditNoteID, - CreditNotes creditNotes, + UUID invoiceID, + Invoices invoices, Integer unitdp, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateCreditNoteForHttpResponse( - accessToken, xeroTenantId, creditNoteID, creditNotes, unitdp, idempotencyKey); + updateInvoiceForHttpResponse( + accessToken, xeroTenantId, invoiceID, invoices, unitdp, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateCreditNote -------------------"); + + " : updateInvoice -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -28255,9 +26605,9 @@ public CreditNotes updateCreditNote( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("CreditNotes", object.getMessage(), e); + handler.validationError("Invoices", object.getMessage(), e); } - handler.validationError("CreditNotes", object, e); + handler.validationError("Invoices", object, e); } else { handler.execute(e); } @@ -28268,15 +26618,15 @@ public CreditNotes updateCreditNote( } /** - * Updates a specific credit note + * Updates a specific sales invoices or purchase bills * - *

200 - Success - return response of type Credit Notes array with updated CreditNote + *

200 - Success - return response of type Invoices array with updated Invoice * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param creditNoteID Unique identifier for a Credit Note - * @param creditNotes an array of Credit Notes containing credit note details to update + * @param invoiceID Unique identifier for an Invoice + * @param invoices The invoices parameter * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate @@ -28285,42 +26635,42 @@ public CreditNotes updateCreditNote( * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateCreditNoteForHttpResponse( + public HttpResponse updateInvoiceForHttpResponse( String accessToken, String xeroTenantId, - UUID creditNoteID, - CreditNotes creditNotes, + UUID invoiceID, + Invoices invoices, Integer unitdp, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateCreditNote"); - } // verify the required parameter 'creditNoteID' is set - if (creditNoteID == null) { + "Missing the required parameter 'xeroTenantId' when calling updateInvoice"); + } // verify the required parameter 'invoiceID' is set + if (invoiceID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'creditNoteID' when calling updateCreditNote"); - } // verify the required parameter 'creditNotes' is set - if (creditNotes == null) { + "Missing the required parameter 'invoiceID' when calling updateInvoice"); + } // verify the required parameter 'invoices' is set + if (invoices == null) { throw new IllegalArgumentException( - "Missing the required parameter 'creditNotes' when calling updateCreditNote"); + "Missing the required parameter 'invoices' when calling updateInvoice"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateCreditNote"); + "Missing the required parameter 'accessToken' when calling updateInvoice"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("CreditNoteID", creditNoteID); + uriVariables.put("InvoiceID", invoiceID); - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/CreditNotes/{CreditNoteID}"); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Invoices/{InvoiceID}"); if (unitdp != null) { String key = "unitdp"; Object value = unitdp; @@ -28348,7 +26698,7 @@ public HttpResponse updateCreditNoteForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(creditNotes); + content = apiClient.new JacksonJsonHttpContent(invoices); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -28362,52 +26712,58 @@ public HttpResponse updateCreditNoteForHttpResponse( .execute(); } - // Overload params for updateCreditNoteAttachmentByFileName to allow byte[] or File type to be - // passed as body /** - * Updates attachments on a specific credit note by file name + * Updates an attachment from a specific invoices or purchase bill by filename * - *

200 - Success - return response of type Attachments array with updated Attachment for - * specific Credit Note + *

200 - Success - return response of type Attachments array with updated Attachment * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param creditNoteID Unique identifier for a Credit Note + * @param invoiceID Unique identifier for an Invoice * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateCreditNoteAttachmentByFileName( + public Attachments updateInvoiceAttachmentByFileName( String accessToken, String xeroTenantId, - UUID creditNoteID, + UUID invoiceID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateCreditNoteAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, creditNoteID, fileName, body, idempotencyKey, mimeType); + updateInvoiceAttachmentByFileNameForHttpResponse( + accessToken, xeroTenantId, invoiceID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateCreditNoteAttachmentByFileName -------------------"); + + " : updateInvoiceAttachmentByFileName -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -28415,81 +26771,78 @@ public Attachments updateCreditNoteAttachmentByFileName( } /** - * Updates attachments on a specific credit note by file name + * Updates an attachment from a specific invoices or purchase bill by filename * - *

200 - Success - return response of type Attachments array with updated Attachment for - * specific Credit Note + *

200 - Success - return response of type Attachments array with updated Attachment * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param creditNoteID Unique identifier for a Credit Note + * @param invoiceID Unique identifier for an Invoice * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateCreditNoteAttachmentByFileNameForHttpResponse( + public HttpResponse updateInvoiceAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, - UUID creditNoteID, + UUID invoiceID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " updateCreditNoteAttachmentByFileName"); - } // verify the required parameter 'creditNoteID' is set - if (creditNoteID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'creditNoteID' when calling" - + " updateCreditNoteAttachmentByFileName"); + + " updateInvoiceAttachmentByFileName"); + } // verify the required parameter 'invoiceID' is set + if (invoiceID == null) { + throw new IllegalArgumentException( + "Missing the required parameter 'invoiceID' when calling" + + " updateInvoiceAttachmentByFileName"); } // verify the required parameter 'fileName' is set if (fileName == null) { throw new IllegalArgumentException( "Missing the required parameter 'fileName' when calling" - + " updateCreditNoteAttachmentByFileName"); + + " updateInvoiceAttachmentByFileName"); } // verify the required parameter 'body' is set if (body == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " updateCreditNoteAttachmentByFileName"); + "Missing the required parameter 'body' when calling updateInvoiceAttachmentByFileName"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " updateCreditNoteAttachmentByFileName"); + + " updateInvoiceAttachmentByFileName"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("CreditNoteID", creditNoteID); + uriVariables.put("InvoiceID", invoiceID); uriVariables.put("FileName", fileName); UriBuilder uriBuilder = UriBuilder.fromUri( - apiClient.getBasePath() + "/CreditNotes/{CreditNoteID}/Attachments/{FileName}"); + apiClient.getBasePath() + "/Invoices/{InvoiceID}/Attachments/{FileName}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -28503,43 +26856,43 @@ public HttpResponse updateCreditNoteAttachmentByFileNameForHttpResponse( } /** - * Updates attachments on a specific credit note by file name + * Updates a specific item * - *

200 - Success - return response of type Attachments array with updated Attachment for - * specific Credit Note + *

200 - Success - return response of type Items array with updated Item * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param creditNoteID Unique identifier for a Credit Note - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param itemID Unique identifier for an Item + * @param items The items parameter + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return Items * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateCreditNoteAttachmentByFileName( + public Items updateItem( String accessToken, String xeroTenantId, - UUID creditNoteID, - String fileName, - File body, + UUID itemID, + Items items, + Integer unitdp, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateCreditNoteAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, creditNoteID, fileName, body, idempotencyKey); + updateItemForHttpResponse( + accessToken, xeroTenantId, itemID, items, unitdp, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateCreditNoteAttachmentByFileName -------------------"); + + " : updateItem -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -28549,9 +26902,9 @@ public Attachments updateCreditNoteAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("Items", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("Items", object, e); } else { handler.execute(e); } @@ -28562,79 +26915,88 @@ public Attachments updateCreditNoteAttachmentByFileName( } /** - * Updates attachments on a specific credit note by file name + * Updates a specific item * - *

200 - Success - return response of type Attachments array with updated Attachment for - * specific Credit Note + *

200 - Success - return response of type Items array with updated Item * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param creditNoteID Unique identifier for a Credit Note - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param itemID Unique identifier for an Item + * @param items The items parameter + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateCreditNoteAttachmentByFileNameForHttpResponse( + public HttpResponse updateItemForHttpResponse( String accessToken, String xeroTenantId, - UUID creditNoteID, - String fileName, - File body, + UUID itemID, + Items items, + Integer unitdp, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateCreditNoteAttachmentByFileName"); - } // verify the required parameter 'creditNoteID' is set - if (creditNoteID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'creditNoteID' when calling" - + " updateCreditNoteAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { + "Missing the required parameter 'xeroTenantId' when calling updateItem"); + } // verify the required parameter 'itemID' is set + if (itemID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updateCreditNoteAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + "Missing the required parameter 'itemID' when calling updateItem"); + } // verify the required parameter 'items' is set + if (items == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " updateCreditNoteAttachmentByFileName"); + "Missing the required parameter 'items' when calling updateItem"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateCreditNoteAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling updateItem"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("CreditNoteID", creditNoteID); - uriVariables.put("FileName", fileName); + uriVariables.put("ItemID", itemID); - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/CreditNotes/{CreditNoteID}/Attachments/{FileName}"); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Items/{ItemID}"); + if (unitdp != null) { + String key = "unitdp"; + Object value = unitdp; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(items); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -28648,40 +27010,42 @@ public HttpResponse updateCreditNoteAttachmentByFileNameForHttpResponse( } /** - * Updates a specific expense claims + * Updates a specific linked transactions (billable expenses) * - *

200 - Success - return response of type ExpenseClaims array with updated ExpenseClaim + *

200 - Success - return response of type LinkedTransactions array with updated + * LinkedTransaction * - *

400 - A failed request due to validation error + *

400 - Success - return response of type LinkedTransactions array with updated + * LinkedTransaction * * @param xeroTenantId Xero identifier for Tenant - * @param expenseClaimID Unique identifier for a ExpenseClaim - * @param expenseClaims The expenseClaims parameter + * @param linkedTransactionID Unique identifier for a LinkedTransaction + * @param linkedTransactions The linkedTransactions parameter * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return ExpenseClaims + * @return LinkedTransactions * @throws IOException if an error occurs while attempting to invoke the API * */ - public ExpenseClaims updateExpenseClaim( + public LinkedTransactions updateLinkedTransaction( String accessToken, String xeroTenantId, - UUID expenseClaimID, - ExpenseClaims expenseClaims, + UUID linkedTransactionID, + LinkedTransactions linkedTransactions, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateExpenseClaimForHttpResponse( - accessToken, xeroTenantId, expenseClaimID, expenseClaims, idempotencyKey); + updateLinkedTransactionForHttpResponse( + accessToken, xeroTenantId, linkedTransactionID, linkedTransactions, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateExpenseClaim -------------------"); + + " : updateLinkedTransaction -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -28691,9 +27055,9 @@ public ExpenseClaims updateExpenseClaim( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("ExpenseClaims", object.getMessage(), e); + handler.validationError("LinkedTransactions", object.getMessage(), e); } - handler.validationError("ExpenseClaims", object, e); + handler.validationError("LinkedTransactions", object, e); } else { handler.execute(e); } @@ -28704,56 +27068,61 @@ public ExpenseClaims updateExpenseClaim( } /** - * Updates a specific expense claims + * Updates a specific linked transactions (billable expenses) * - *

200 - Success - return response of type ExpenseClaims array with updated ExpenseClaim + *

200 - Success - return response of type LinkedTransactions array with updated + * LinkedTransaction * - *

400 - A failed request due to validation error + *

400 - Success - return response of type LinkedTransactions array with updated + * LinkedTransaction * * @param xeroTenantId Xero identifier for Tenant - * @param expenseClaimID Unique identifier for a ExpenseClaim - * @param expenseClaims The expenseClaims parameter + * @param linkedTransactionID Unique identifier for a LinkedTransaction + * @param linkedTransactions The linkedTransactions parameter * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateExpenseClaimForHttpResponse( + public HttpResponse updateLinkedTransactionForHttpResponse( String accessToken, String xeroTenantId, - UUID expenseClaimID, - ExpenseClaims expenseClaims, + UUID linkedTransactionID, + LinkedTransactions linkedTransactions, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateExpenseClaim"); - } // verify the required parameter 'expenseClaimID' is set - if (expenseClaimID == null) { + "Missing the required parameter 'xeroTenantId' when calling updateLinkedTransaction"); + } // verify the required parameter 'linkedTransactionID' is set + if (linkedTransactionID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'expenseClaimID' when calling updateExpenseClaim"); - } // verify the required parameter 'expenseClaims' is set - if (expenseClaims == null) { + "Missing the required parameter 'linkedTransactionID' when calling" + + " updateLinkedTransaction"); + } // verify the required parameter 'linkedTransactions' is set + if (linkedTransactions == null) { throw new IllegalArgumentException( - "Missing the required parameter 'expenseClaims' when calling updateExpenseClaim"); + "Missing the required parameter 'linkedTransactions' when calling" + + " updateLinkedTransaction"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateExpenseClaim"); + "Missing the required parameter 'accessToken' when calling updateLinkedTransaction"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("ExpenseClaimID", expenseClaimID); + uriVariables.put("LinkedTransactionID", linkedTransactionID); UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/ExpenseClaims/{ExpenseClaimID}"); + UriBuilder.fromUri(apiClient.getBasePath() + "/LinkedTransactions/{LinkedTransactionID}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { @@ -28761,7 +27130,7 @@ public HttpResponse updateExpenseClaimForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(expenseClaims); + content = apiClient.new JacksonJsonHttpContent(linkedTransactions); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -28776,43 +27145,41 @@ public HttpResponse updateExpenseClaimForHttpResponse( } /** - * Updates a specific sales invoices or purchase bills + * Updates a specific manual journal * - *

200 - Success - return response of type Invoices array with updated Invoice + *

200 - Success - return response of type ManualJournals array with an updated + * ManualJournal * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param invoiceID Unique identifier for an Invoice - * @param invoices The invoices parameter - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts + * @param manualJournalID Unique identifier for a ManualJournal + * @param manualJournals The manualJournals parameter * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Invoices + * @return ManualJournals * @throws IOException if an error occurs while attempting to invoke the API * */ - public Invoices updateInvoice( + public ManualJournals updateManualJournal( String accessToken, String xeroTenantId, - UUID invoiceID, - Invoices invoices, - Integer unitdp, + UUID manualJournalID, + ManualJournals manualJournals, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateInvoiceForHttpResponse( - accessToken, xeroTenantId, invoiceID, invoices, unitdp, idempotencyKey); + updateManualJournalForHttpResponse( + accessToken, xeroTenantId, manualJournalID, manualJournals, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateInvoice -------------------"); + + " : updateManualJournal -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -28822,9 +27189,9 @@ public Invoices updateInvoice( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Invoices", object.getMessage(), e); + handler.validationError("ManualJournals", object.getMessage(), e); } - handler.validationError("Invoices", object, e); + handler.validationError("ManualJournals", object, e); } else { handler.execute(e); } @@ -28835,78 +27202,58 @@ public Invoices updateInvoice( } /** - * Updates a specific sales invoices or purchase bills + * Updates a specific manual journal * - *

200 - Success - return response of type Invoices array with updated Invoice + *

200 - Success - return response of type ManualJournals array with an updated + * ManualJournal * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param invoiceID Unique identifier for an Invoice - * @param invoices The invoices parameter - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts + * @param manualJournalID Unique identifier for a ManualJournal + * @param manualJournals The manualJournals parameter * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateInvoiceForHttpResponse( + public HttpResponse updateManualJournalForHttpResponse( String accessToken, String xeroTenantId, - UUID invoiceID, - Invoices invoices, - Integer unitdp, + UUID manualJournalID, + ManualJournals manualJournals, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateInvoice"); - } // verify the required parameter 'invoiceID' is set - if (invoiceID == null) { + "Missing the required parameter 'xeroTenantId' when calling updateManualJournal"); + } // verify the required parameter 'manualJournalID' is set + if (manualJournalID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'invoiceID' when calling updateInvoice"); - } // verify the required parameter 'invoices' is set - if (invoices == null) { + "Missing the required parameter 'manualJournalID' when calling updateManualJournal"); + } // verify the required parameter 'manualJournals' is set + if (manualJournals == null) { throw new IllegalArgumentException( - "Missing the required parameter 'invoices' when calling updateInvoice"); + "Missing the required parameter 'manualJournals' when calling updateManualJournal"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateInvoice"); + "Missing the required parameter 'accessToken' when calling updateManualJournal"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("InvoiceID", invoiceID); + uriVariables.put("ManualJournalID", manualJournalID); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Invoices/{InvoiceID}"); - if (unitdp != null) { - String key = "unitdp"; - Object value = unitdp; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } + UriBuilder uriBuilder = + UriBuilder.fromUri(apiClient.getBasePath() + "/ManualJournals/{ManualJournalID}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { @@ -28914,7 +27261,7 @@ public HttpResponse updateInvoiceForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(invoices); + content = apiClient.new JacksonJsonHttpContent(manualJournals); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -28928,51 +27275,59 @@ public HttpResponse updateInvoiceForHttpResponse( .execute(); } - // Overload params for updateInvoiceAttachmentByFileName to allow byte[] or File type to be passed - // as body /** - * Updates an attachment from a specific invoices or purchase bill by filename + * Updates a specific attachment from a specific manual journal by file name * - *

200 - Success - return response of type Attachments array with updated Attachment + *

200 - Success - return response of type Attachments array with an update Attachment + * for a ManualJournals * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param invoiceID Unique identifier for an Invoice + * @param manualJournalID Unique identifier for a ManualJournal * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateInvoiceAttachmentByFileName( + public Attachments updateManualJournalAttachmentByFileName( String accessToken, String xeroTenantId, - UUID invoiceID, + UUID manualJournalID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateInvoiceAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, invoiceID, fileName, body, idempotencyKey, mimeType); + updateManualJournalAttachmentByFileNameForHttpResponse( + accessToken, xeroTenantId, manualJournalID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateInvoiceAttachmentByFileName -------------------"); + + " : updateManualJournalAttachmentByFileName -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -28980,79 +27335,80 @@ public Attachments updateInvoiceAttachmentByFileName( } /** - * Updates an attachment from a specific invoices or purchase bill by filename + * Updates a specific attachment from a specific manual journal by file name * - *

200 - Success - return response of type Attachments array with updated Attachment + *

200 - Success - return response of type Attachments array with an update Attachment + * for a ManualJournals * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param invoiceID Unique identifier for an Invoice + * @param manualJournalID Unique identifier for a ManualJournal * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateInvoiceAttachmentByFileNameForHttpResponse( + public HttpResponse updateManualJournalAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, - UUID invoiceID, + UUID manualJournalID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " updateInvoiceAttachmentByFileName"); - } // verify the required parameter 'invoiceID' is set - if (invoiceID == null) { + + " updateManualJournalAttachmentByFileName"); + } // verify the required parameter 'manualJournalID' is set + if (manualJournalID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'invoiceID' when calling" - + " updateInvoiceAttachmentByFileName"); + "Missing the required parameter 'manualJournalID' when calling" + + " updateManualJournalAttachmentByFileName"); } // verify the required parameter 'fileName' is set if (fileName == null) { throw new IllegalArgumentException( "Missing the required parameter 'fileName' when calling" - + " updateInvoiceAttachmentByFileName"); + + " updateManualJournalAttachmentByFileName"); } // verify the required parameter 'body' is set if (body == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling updateInvoiceAttachmentByFileName"); + "Missing the required parameter 'body' when calling" + + " updateManualJournalAttachmentByFileName"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " updateInvoiceAttachmentByFileName"); + + " updateManualJournalAttachmentByFileName"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("InvoiceID", invoiceID); + uriVariables.put("ManualJournalID", manualJournalID); uriVariables.put("FileName", fileName); UriBuilder uriBuilder = UriBuilder.fromUri( - apiClient.getBasePath() + "/Invoices/{InvoiceID}/Attachments/{FileName}"); + apiClient.getBasePath() + "/ManualJournals/{ManualJournalID}/Attachments/{FileName}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -29066,42 +27422,45 @@ public HttpResponse updateInvoiceAttachmentByFileNameForHttpResponse( } /** - * Updates an attachment from a specific invoices or purchase bill by filename + * Updates or creates one or more spent or received money transaction * - *

200 - Success - return response of type Attachments array with updated Attachment + *

200 - Success - return response of type BankTransactions array with new + * BankTransaction * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param invoiceID Unique identifier for an Invoice - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param bankTransactions The bankTransactions parameter + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return BankTransactions * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateInvoiceAttachmentByFileName( + public BankTransactions updateOrCreateBankTransactions( String accessToken, String xeroTenantId, - UUID invoiceID, - String fileName, - File body, + BankTransactions bankTransactions, + Boolean summarizeErrors, + Integer unitdp, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateInvoiceAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, invoiceID, fileName, body, idempotencyKey); + updateOrCreateBankTransactionsForHttpResponse( + accessToken, xeroTenantId, bankTransactions, summarizeErrors, unitdp, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateInvoiceAttachmentByFileName -------------------"); + + " : updateOrCreateBankTransactions -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -29111,9 +27470,9 @@ public Attachments updateInvoiceAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("BankTransactions", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("BankTransactions", object, e); } else { handler.execute(e); } @@ -29124,77 +27483,105 @@ public Attachments updateInvoiceAttachmentByFileName( } /** - * Updates an attachment from a specific invoices or purchase bill by filename + * Updates or creates one or more spent or received money transaction * - *

200 - Success - return response of type Attachments array with updated Attachment + *

200 - Success - return response of type BankTransactions array with new + * BankTransaction * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param invoiceID Unique identifier for an Invoice - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param bankTransactions The bankTransactions parameter + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateInvoiceAttachmentByFileNameForHttpResponse( + public HttpResponse updateOrCreateBankTransactionsForHttpResponse( String accessToken, String xeroTenantId, - UUID invoiceID, - String fileName, - File body, + BankTransactions bankTransactions, + Boolean summarizeErrors, + Integer unitdp, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " updateInvoiceAttachmentByFileName"); - } // verify the required parameter 'invoiceID' is set - if (invoiceID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'invoiceID' when calling" - + " updateInvoiceAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updateInvoiceAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + + " updateOrCreateBankTransactions"); + } // verify the required parameter 'bankTransactions' is set + if (bankTransactions == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling updateInvoiceAttachmentByFileName"); + "Missing the required parameter 'bankTransactions' when calling" + + " updateOrCreateBankTransactions"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " updateInvoiceAttachmentByFileName"); + + " updateOrCreateBankTransactions"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("InvoiceID", invoiceID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/Invoices/{InvoiceID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/BankTransactions"); + if (summarizeErrors != null) { + String key = "summarizeErrors"; + Object value = summarizeErrors; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } + if (unitdp != null) { + String key = "unitdp"; + Object value = unitdp; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } + String url = uriBuilder.build().toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(bankTransactions); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -29208,43 +27595,41 @@ public HttpResponse updateInvoiceAttachmentByFileNameForHttpResponse( } /** - * Updates a specific item + * Updates or creates one or more contacts in a Xero organisation * - *

200 - Success - return response of type Items array with updated Item + *

200 - Success - return response of type Contacts array with newly created Contact * - *

400 - A failed request due to validation error + *

400 - Validation Error - some data was incorrect returns response of type Error * * @param xeroTenantId Xero identifier for Tenant - * @param itemID Unique identifier for an Item - * @param items The items parameter - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts + * @param contacts The contacts parameter + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Items + * @return Contacts * @throws IOException if an error occurs while attempting to invoke the API * */ - public Items updateItem( + public Contacts updateOrCreateContacts( String accessToken, String xeroTenantId, - UUID itemID, - Items items, - Integer unitdp, + Contacts contacts, + Boolean summarizeErrors, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateItemForHttpResponse( - accessToken, xeroTenantId, itemID, items, unitdp, idempotencyKey); + updateOrCreateContactsForHttpResponse( + accessToken, xeroTenantId, contacts, summarizeErrors, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateItem -------------------"); + + " : updateOrCreateContacts -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -29254,9 +27639,9 @@ public Items updateItem( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Items", object.getMessage(), e); + handler.validationError("Contacts", object.getMessage(), e); } - handler.validationError("Items", object, e); + handler.validationError("Contacts", object, e); } else { handler.execute(e); } @@ -29267,61 +27652,52 @@ public Items updateItem( } /** - * Updates a specific item + * Updates or creates one or more contacts in a Xero organisation * - *

200 - Success - return response of type Items array with updated Item + *

200 - Success - return response of type Contacts array with newly created Contact * - *

400 - A failed request due to validation error + *

400 - Validation Error - some data was incorrect returns response of type Error * * @param xeroTenantId Xero identifier for Tenant - * @param itemID Unique identifier for an Item - * @param items The items parameter - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts + * @param contacts The contacts parameter + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateItemForHttpResponse( + public HttpResponse updateOrCreateContactsForHttpResponse( String accessToken, String xeroTenantId, - UUID itemID, - Items items, - Integer unitdp, + Contacts contacts, + Boolean summarizeErrors, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateItem"); - } // verify the required parameter 'itemID' is set - if (itemID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'itemID' when calling updateItem"); - } // verify the required parameter 'items' is set - if (items == null) { + "Missing the required parameter 'xeroTenantId' when calling updateOrCreateContacts"); + } // verify the required parameter 'contacts' is set + if (contacts == null) { throw new IllegalArgumentException( - "Missing the required parameter 'items' when calling updateItem"); + "Missing the required parameter 'contacts' when calling updateOrCreateContacts"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateItem"); + "Missing the required parameter 'accessToken' when calling updateOrCreateContacts"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("ItemID", itemID); - - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Items/{ItemID}"); - if (unitdp != null) { - String key = "unitdp"; - Object value = unitdp; + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Contacts"); + if (summarizeErrors != null) { + String key = "summarizeErrors"; + Object value = summarizeErrors; if (value instanceof Collection) { List valueList = new ArrayList<>((Collection) value); if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { @@ -29339,14 +27715,14 @@ public HttpResponse updateItemForHttpResponse( uriBuilder = uriBuilder.queryParam(key, value); } } - String url = uriBuilder.buildFromMap(uriVariables).toString(); + String url = uriBuilder.build().toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(items); + content = apiClient.new JacksonJsonHttpContent(contacts); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -29361,42 +27737,45 @@ public HttpResponse updateItemForHttpResponse( } /** - * Updates a specific linked transactions (billable expenses) + * Updates or creates one or more credit notes * - *

200 - Success - return response of type LinkedTransactions array with updated - * LinkedTransaction + *

200 - Success - return response of type Credit Notes array of newly created + * CreditNote * - *

400 - Success - return response of type LinkedTransactions array with updated - * LinkedTransaction + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param linkedTransactionID Unique identifier for a LinkedTransaction - * @param linkedTransactions The linkedTransactions parameter + * @param creditNotes an array of Credit Notes with a single CreditNote object. + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return LinkedTransactions + * @return CreditNotes * @throws IOException if an error occurs while attempting to invoke the API * */ - public LinkedTransactions updateLinkedTransaction( + public CreditNotes updateOrCreateCreditNotes( String accessToken, String xeroTenantId, - UUID linkedTransactionID, - LinkedTransactions linkedTransactions, + CreditNotes creditNotes, + Boolean summarizeErrors, + Integer unitdp, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateLinkedTransactionForHttpResponse( - accessToken, xeroTenantId, linkedTransactionID, linkedTransactions, idempotencyKey); + updateOrCreateCreditNotesForHttpResponse( + accessToken, xeroTenantId, creditNotes, summarizeErrors, unitdp, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateLinkedTransaction -------------------"); + + " : updateOrCreateCreditNotes -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -29406,9 +27785,9 @@ public LinkedTransactions updateLinkedTransaction( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("LinkedTransactions", object.getMessage(), e); + handler.validationError("CreditNotes", object.getMessage(), e); } - handler.validationError("LinkedTransactions", object, e); + handler.validationError("CreditNotes", object, e); } else { handler.execute(e); } @@ -29419,68 +27798,101 @@ public LinkedTransactions updateLinkedTransaction( } /** - * Updates a specific linked transactions (billable expenses) + * Updates or creates one or more credit notes * - *

200 - Success - return response of type LinkedTransactions array with updated - * LinkedTransaction + *

200 - Success - return response of type Credit Notes array of newly created + * CreditNote * - *

400 - Success - return response of type LinkedTransactions array with updated - * LinkedTransaction + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param linkedTransactionID Unique identifier for a LinkedTransaction - * @param linkedTransactions The linkedTransactions parameter + * @param creditNotes an array of Credit Notes with a single CreditNote object. + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateLinkedTransactionForHttpResponse( + public HttpResponse updateOrCreateCreditNotesForHttpResponse( String accessToken, String xeroTenantId, - UUID linkedTransactionID, - LinkedTransactions linkedTransactions, + CreditNotes creditNotes, + Boolean summarizeErrors, + Integer unitdp, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateLinkedTransaction"); - } // verify the required parameter 'linkedTransactionID' is set - if (linkedTransactionID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'linkedTransactionID' when calling" - + " updateLinkedTransaction"); - } // verify the required parameter 'linkedTransactions' is set - if (linkedTransactions == null) { + "Missing the required parameter 'xeroTenantId' when calling updateOrCreateCreditNotes"); + } // verify the required parameter 'creditNotes' is set + if (creditNotes == null) { throw new IllegalArgumentException( - "Missing the required parameter 'linkedTransactions' when calling" - + " updateLinkedTransaction"); + "Missing the required parameter 'creditNotes' when calling updateOrCreateCreditNotes"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateLinkedTransaction"); + "Missing the required parameter 'accessToken' when calling updateOrCreateCreditNotes"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("LinkedTransactionID", linkedTransactionID); - - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/LinkedTransactions/{LinkedTransactionID}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/CreditNotes"); + if (summarizeErrors != null) { + String key = "summarizeErrors"; + Object value = summarizeErrors; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } + if (unitdp != null) { + String key = "unitdp"; + Object value = unitdp; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } + String url = uriBuilder.build().toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(linkedTransactions); + content = apiClient.new JacksonJsonHttpContent(creditNotes); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -29495,41 +27907,41 @@ public HttpResponse updateLinkedTransactionForHttpResponse( } /** - * Updates a specific manual journal + * Creates a single new employees used in Xero payrun * - *

200 - Success - return response of type ManualJournals array with an updated - * ManualJournal + *

200 - Success - return response of type Employees array with new Employee * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param manualJournalID Unique identifier for a ManualJournal - * @param manualJournals The manualJournals parameter + * @param employees Employees with array of Employee object in body of request + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return ManualJournals + * @return Employees * @throws IOException if an error occurs while attempting to invoke the API * */ - public ManualJournals updateManualJournal( + public Employees updateOrCreateEmployees( String accessToken, String xeroTenantId, - UUID manualJournalID, - ManualJournals manualJournals, + Employees employees, + Boolean summarizeErrors, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateManualJournalForHttpResponse( - accessToken, xeroTenantId, manualJournalID, manualJournals, idempotencyKey); + updateOrCreateEmployeesForHttpResponse( + accessToken, xeroTenantId, employees, summarizeErrors, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateManualJournal -------------------"); + + " : updateOrCreateEmployees -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -29539,9 +27951,9 @@ public ManualJournals updateManualJournal( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("ManualJournals", object.getMessage(), e); + handler.validationError("Employees", object.getMessage(), e); } - handler.validationError("ManualJournals", object, e); + handler.validationError("Employees", object, e); } else { handler.execute(e); } @@ -29552,1259 +27964,49 @@ public ManualJournals updateManualJournal( } /** - * Updates a specific manual journal + * Creates a single new employees used in Xero payrun * - *

200 - Success - return response of type ManualJournals array with an updated - * ManualJournal + *

200 - Success - return response of type Employees array with new Employee * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param manualJournalID Unique identifier for a ManualJournal - * @param manualJournals The manualJournals parameter + * @param employees Employees with array of Employee object in body of request + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateManualJournalForHttpResponse( + public HttpResponse updateOrCreateEmployeesForHttpResponse( String accessToken, String xeroTenantId, - UUID manualJournalID, - ManualJournals manualJournals, + Employees employees, + Boolean summarizeErrors, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateManualJournal"); - } // verify the required parameter 'manualJournalID' is set - if (manualJournalID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'manualJournalID' when calling updateManualJournal"); - } // verify the required parameter 'manualJournals' is set - if (manualJournals == null) { + "Missing the required parameter 'xeroTenantId' when calling updateOrCreateEmployees"); + } // verify the required parameter 'employees' is set + if (employees == null) { throw new IllegalArgumentException( - "Missing the required parameter 'manualJournals' when calling updateManualJournal"); + "Missing the required parameter 'employees' when calling updateOrCreateEmployees"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateManualJournal"); + "Missing the required parameter 'accessToken' when calling updateOrCreateEmployees"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("ManualJournalID", manualJournalID); - - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/ManualJournals/{ManualJournalID}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(manualJournals); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - // Overload params for updateManualJournalAttachmentByFileName to allow byte[] or File type to be - // passed as body - /** - * Updates a specific attachment from a specific manual journal by file name - * - *

200 - Success - return response of type Attachments array with an update Attachment - * for a ManualJournals - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param manualJournalID Unique identifier for a ManualJournal - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param mimeType The type of file being attached - * @param accessToken Authorization token for user set in header of each request - * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API - */ - public Attachments updateManualJournalAttachmentByFileName( - String accessToken, - String xeroTenantId, - UUID manualJournalID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateManualJournalAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, manualJournalID, fileName, body, idempotencyKey, mimeType); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateManualJournalAttachmentByFileName -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Updates a specific attachment from a specific manual journal by file name - * - *

200 - Success - return response of type Attachments array with an update Attachment - * for a ManualJournals - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param manualJournalID Unique identifier for a ManualJournal - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param mimeType The type of file being attached - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public HttpResponse updateManualJournalAttachmentByFileNameForHttpResponse( - String accessToken, - String xeroTenantId, - UUID manualJournalID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateManualJournalAttachmentByFileName"); - } // verify the required parameter 'manualJournalID' is set - if (manualJournalID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'manualJournalID' when calling" - + " updateManualJournalAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updateManualJournalAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " updateManualJournalAttachmentByFileName"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateManualJournalAttachmentByFileName"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("ManualJournalID", manualJournalID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/ManualJournals/{ManualJournalID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - - ByteArrayContent content = null; - - content = new ByteArrayContent(mimeType, body); - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Updates a specific attachment from a specific manual journal by file name - * - *

200 - Success - return response of type Attachments array with an update Attachment - * for a ManualJournals - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param manualJournalID Unique identifier for a ManualJournal - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public Attachments updateManualJournalAttachmentByFileName( - String accessToken, - String xeroTenantId, - UUID manualJournalID, - String fileName, - File body, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateManualJournalAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, manualJournalID, fileName, body, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateManualJournalAttachmentByFileName -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); - } - handler.validationError("Attachments", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Updates a specific attachment from a specific manual journal by file name - * - *

200 - Success - return response of type Attachments array with an update Attachment - * for a ManualJournals - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param manualJournalID Unique identifier for a ManualJournal - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse updateManualJournalAttachmentByFileNameForHttpResponse( - String accessToken, - String xeroTenantId, - UUID manualJournalID, - String fileName, - File body, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateManualJournalAttachmentByFileName"); - } // verify the required parameter 'manualJournalID' is set - if (manualJournalID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'manualJournalID' when calling" - + " updateManualJournalAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updateManualJournalAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " updateManualJournalAttachmentByFileName"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateManualJournalAttachmentByFileName"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("ManualJournalID", manualJournalID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/ManualJournals/{ManualJournalID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); - HttpContent content = null; - content = new FileContent(mimeType, body); - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Updates or creates one or more spent or received money transaction - * - *

200 - Success - return response of type BankTransactions array with new - * BankTransaction - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param bankTransactions The bankTransactions parameter - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return BankTransactions - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public BankTransactions updateOrCreateBankTransactions( - String accessToken, - String xeroTenantId, - BankTransactions bankTransactions, - Boolean summarizeErrors, - Integer unitdp, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateOrCreateBankTransactionsForHttpResponse( - accessToken, xeroTenantId, bankTransactions, summarizeErrors, unitdp, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateOrCreateBankTransactions -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("BankTransactions", object.getMessage(), e); - } - handler.validationError("BankTransactions", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Updates or creates one or more spent or received money transaction - * - *

200 - Success - return response of type BankTransactions array with new - * BankTransaction - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param bankTransactions The bankTransactions parameter - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse updateOrCreateBankTransactionsForHttpResponse( - String accessToken, - String xeroTenantId, - BankTransactions bankTransactions, - Boolean summarizeErrors, - Integer unitdp, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateOrCreateBankTransactions"); - } // verify the required parameter 'bankTransactions' is set - if (bankTransactions == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'bankTransactions' when calling" - + " updateOrCreateBankTransactions"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateOrCreateBankTransactions"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/BankTransactions"); - if (summarizeErrors != null) { - String key = "summarizeErrors"; - Object value = summarizeErrors; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } - if (unitdp != null) { - String key = "unitdp"; - Object value = unitdp; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } - String url = uriBuilder.build().toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(bankTransactions); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Updates or creates one or more contacts in a Xero organisation - * - *

200 - Success - return response of type Contacts array with newly created Contact - * - *

400 - Validation Error - some data was incorrect returns response of type Error - * - * @param xeroTenantId Xero identifier for Tenant - * @param contacts The contacts parameter - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return Contacts - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public Contacts updateOrCreateContacts( - String accessToken, - String xeroTenantId, - Contacts contacts, - Boolean summarizeErrors, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateOrCreateContactsForHttpResponse( - accessToken, xeroTenantId, contacts, summarizeErrors, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateOrCreateContacts -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Contacts", object.getMessage(), e); - } - handler.validationError("Contacts", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Updates or creates one or more contacts in a Xero organisation - * - *

200 - Success - return response of type Contacts array with newly created Contact - * - *

400 - Validation Error - some data was incorrect returns response of type Error - * - * @param xeroTenantId Xero identifier for Tenant - * @param contacts The contacts parameter - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse updateOrCreateContactsForHttpResponse( - String accessToken, - String xeroTenantId, - Contacts contacts, - Boolean summarizeErrors, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateOrCreateContacts"); - } // verify the required parameter 'contacts' is set - if (contacts == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'contacts' when calling updateOrCreateContacts"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateOrCreateContacts"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Contacts"); - if (summarizeErrors != null) { - String key = "summarizeErrors"; - Object value = summarizeErrors; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } - String url = uriBuilder.build().toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(contacts); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Updates or creates one or more credit notes - * - *

200 - Success - return response of type Credit Notes array of newly created - * CreditNote - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param creditNotes an array of Credit Notes with a single CreditNote object. - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return CreditNotes - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public CreditNotes updateOrCreateCreditNotes( - String accessToken, - String xeroTenantId, - CreditNotes creditNotes, - Boolean summarizeErrors, - Integer unitdp, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateOrCreateCreditNotesForHttpResponse( - accessToken, xeroTenantId, creditNotes, summarizeErrors, unitdp, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateOrCreateCreditNotes -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("CreditNotes", object.getMessage(), e); - } - handler.validationError("CreditNotes", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Updates or creates one or more credit notes - * - *

200 - Success - return response of type Credit Notes array of newly created - * CreditNote - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param creditNotes an array of Credit Notes with a single CreditNote object. - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse updateOrCreateCreditNotesForHttpResponse( - String accessToken, - String xeroTenantId, - CreditNotes creditNotes, - Boolean summarizeErrors, - Integer unitdp, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateOrCreateCreditNotes"); - } // verify the required parameter 'creditNotes' is set - if (creditNotes == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'creditNotes' when calling updateOrCreateCreditNotes"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateOrCreateCreditNotes"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/CreditNotes"); - if (summarizeErrors != null) { - String key = "summarizeErrors"; - Object value = summarizeErrors; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } - if (unitdp != null) { - String key = "unitdp"; - Object value = unitdp; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } - String url = uriBuilder.build().toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(creditNotes); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Creates a single new employees used in Xero payrun - * - *

200 - Success - return response of type Employees array with new Employee - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param employees Employees with array of Employee object in body of request - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return Employees - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public Employees updateOrCreateEmployees( - String accessToken, - String xeroTenantId, - Employees employees, - Boolean summarizeErrors, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateOrCreateEmployeesForHttpResponse( - accessToken, xeroTenantId, employees, summarizeErrors, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateOrCreateEmployees -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Employees", object.getMessage(), e); - } - handler.validationError("Employees", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Creates a single new employees used in Xero payrun - * - *

200 - Success - return response of type Employees array with new Employee - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param employees Employees with array of Employee object in body of request - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse updateOrCreateEmployeesForHttpResponse( - String accessToken, - String xeroTenantId, - Employees employees, - Boolean summarizeErrors, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateOrCreateEmployees"); - } // verify the required parameter 'employees' is set - if (employees == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'employees' when calling updateOrCreateEmployees"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateOrCreateEmployees"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Employees"); - if (summarizeErrors != null) { - String key = "summarizeErrors"; - Object value = summarizeErrors; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } - String url = uriBuilder.build().toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(employees); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Updates or creates one or more sales invoices or purchase bills - * - *

200 - Success - return response of type Invoices array with newly created Invoice - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param invoices The invoices parameter - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return Invoices - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public Invoices updateOrCreateInvoices( - String accessToken, - String xeroTenantId, - Invoices invoices, - Boolean summarizeErrors, - Integer unitdp, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateOrCreateInvoicesForHttpResponse( - accessToken, xeroTenantId, invoices, summarizeErrors, unitdp, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateOrCreateInvoices -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Invoices", object.getMessage(), e); - } - handler.validationError("Invoices", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Updates or creates one or more sales invoices or purchase bills - * - *

200 - Success - return response of type Invoices array with newly created Invoice - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param invoices The invoices parameter - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse updateOrCreateInvoicesForHttpResponse( - String accessToken, - String xeroTenantId, - Invoices invoices, - Boolean summarizeErrors, - Integer unitdp, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateOrCreateInvoices"); - } // verify the required parameter 'invoices' is set - if (invoices == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'invoices' when calling updateOrCreateInvoices"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateOrCreateInvoices"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Invoices"); - if (summarizeErrors != null) { - String key = "summarizeErrors"; - Object value = summarizeErrors; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } - if (unitdp != null) { - String key = "unitdp"; - Object value = unitdp; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } - String url = uriBuilder.build().toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(invoices); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Updates or creates one or more items - * - *

200 - Success - return response of type Items array with newly created Item - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param items The items parameter - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return Items - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public Items updateOrCreateItems( - String accessToken, - String xeroTenantId, - Items items, - Boolean summarizeErrors, - Integer unitdp, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateOrCreateItemsForHttpResponse( - accessToken, xeroTenantId, items, summarizeErrors, unitdp, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateOrCreateItems -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Items", object.getMessage(), e); - } - handler.validationError("Items", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Updates or creates one or more items - * - *

200 - Success - return response of type Items array with newly created Item - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param items The items parameter - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse updateOrCreateItemsForHttpResponse( - String accessToken, - String xeroTenantId, - Items items, - Boolean summarizeErrors, - Integer unitdp, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateOrCreateItems"); - } // verify the required parameter 'items' is set - if (items == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'items' when calling updateOrCreateItems"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateOrCreateItems"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Items"); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Employees"); if (summarizeErrors != null) { String key = "summarizeErrors"; Object value = summarizeErrors; @@ -30825,26 +28027,6 @@ public HttpResponse updateOrCreateItemsForHttpResponse( uriBuilder = uriBuilder.queryParam(key, value); } } - if (unitdp != null) { - String key = "unitdp"; - Object value = unitdp; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } String url = uriBuilder.build().toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { @@ -30852,7 +28034,7 @@ public HttpResponse updateOrCreateItemsForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(items); + content = apiClient.new JacksonJsonHttpContent(employees); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -30867,42 +28049,44 @@ public HttpResponse updateOrCreateItemsForHttpResponse( } /** - * Updates or creates a single manual journal + * Updates or creates one or more sales invoices or purchase bills * - *

200 - Success - return response of type ManualJournals array with newly created - * ManualJournal + *

200 - Success - return response of type Invoices array with newly created Invoice * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param manualJournals ManualJournals array with ManualJournal object in body of request + * @param invoices The invoices parameter * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any * with validation errors + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return ManualJournals + * @return Invoices * @throws IOException if an error occurs while attempting to invoke the API * */ - public ManualJournals updateOrCreateManualJournals( + public Invoices updateOrCreateInvoices( String accessToken, String xeroTenantId, - ManualJournals manualJournals, + Invoices invoices, Boolean summarizeErrors, + Integer unitdp, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateOrCreateManualJournalsForHttpResponse( - accessToken, xeroTenantId, manualJournals, summarizeErrors, idempotencyKey); + updateOrCreateInvoicesForHttpResponse( + accessToken, xeroTenantId, invoices, summarizeErrors, unitdp, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateOrCreateManualJournals -------------------"); + + " : updateOrCreateInvoices -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -30912,9 +28096,9 @@ public ManualJournals updateOrCreateManualJournals( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("ManualJournals", object.getMessage(), e); + handler.validationError("Invoices", object.getMessage(), e); } - handler.validationError("ManualJournals", object, e); + handler.validationError("Invoices", object, e); } else { handler.execute(e); } @@ -30925,51 +28109,52 @@ public ManualJournals updateOrCreateManualJournals( } /** - * Updates or creates a single manual journal + * Updates or creates one or more sales invoices or purchase bills * - *

200 - Success - return response of type ManualJournals array with newly created - * ManualJournal + *

200 - Success - return response of type Invoices array with newly created Invoice * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param manualJournals ManualJournals array with ManualJournal object in body of request + * @param invoices The invoices parameter * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any * with validation errors + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateOrCreateManualJournalsForHttpResponse( + public HttpResponse updateOrCreateInvoicesForHttpResponse( String accessToken, String xeroTenantId, - ManualJournals manualJournals, + Invoices invoices, Boolean summarizeErrors, + Integer unitdp, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateOrCreateManualJournals"); - } // verify the required parameter 'manualJournals' is set - if (manualJournals == null) { + "Missing the required parameter 'xeroTenantId' when calling updateOrCreateInvoices"); + } // verify the required parameter 'invoices' is set + if (invoices == null) { throw new IllegalArgumentException( - "Missing the required parameter 'manualJournals' when calling" - + " updateOrCreateManualJournals"); + "Missing the required parameter 'invoices' when calling updateOrCreateInvoices"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateOrCreateManualJournals"); + "Missing the required parameter 'accessToken' when calling updateOrCreateInvoices"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/ManualJournals"); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Invoices"); if (summarizeErrors != null) { String key = "summarizeErrors"; Object value = summarizeErrors; @@ -30984,140 +28169,15 @@ public HttpResponse updateOrCreateManualJournalsForHttpResponse( } else { uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } - } - String url = uriBuilder.build().toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - - HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(manualJournals); - - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - - /** - * Updates or creates one or more purchase orders - * - *

200 - Success - return response of type PurchaseOrder array for specified - * PurchaseOrder - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrders The purchaseOrders parameter - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return PurchaseOrders - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public PurchaseOrders updateOrCreatePurchaseOrders( - String accessToken, - String xeroTenantId, - PurchaseOrders purchaseOrders, - Boolean summarizeErrors, - String idempotencyKey) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateOrCreatePurchaseOrdersForHttpResponse( - accessToken, xeroTenantId, purchaseOrders, summarizeErrors, idempotencyKey); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateOrCreatePurchaseOrders -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - if (e.getStatusCode() == 400) { - TypeReference errorTypeRef = - new TypeReference() {}; - com.xero.models.accounting.Error object = - apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); - if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("PurchaseOrders", object.getMessage(), e); - } - handler.validationError("PurchaseOrders", object, e); - } else { - handler.execute(e); - } - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Updates or creates one or more purchase orders - * - *

200 - Success - return response of type PurchaseOrder array for specified - * PurchaseOrder - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrders The purchaseOrders parameter - * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any - * with validation errors - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API - */ - public HttpResponse updateOrCreatePurchaseOrdersForHttpResponse( - String accessToken, - String xeroTenantId, - PurchaseOrders purchaseOrders, - Boolean summarizeErrors, - String idempotencyKey) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateOrCreatePurchaseOrders"); - } // verify the required parameter 'purchaseOrders' is set - if (purchaseOrders == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'purchaseOrders' when calling" - + " updateOrCreatePurchaseOrders"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateOrCreatePurchaseOrders"); + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders"); - if (summarizeErrors != null) { - String key = "summarizeErrors"; - Object value = summarizeErrors; + if (unitdp != null) { + String key = "unitdp"; + Object value = unitdp; if (value instanceof Collection) { List valueList = new ArrayList<>((Collection) value); if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { @@ -31142,7 +28202,7 @@ public HttpResponse updateOrCreatePurchaseOrdersForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(purchaseOrders); + content = apiClient.new JacksonJsonHttpContent(invoices); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -31157,41 +28217,44 @@ public HttpResponse updateOrCreatePurchaseOrdersForHttpResponse( } /** - * Updates or creates one or more quotes + * Updates or creates one or more items * - *

200 - Success - return response of type Quotes array with updated or created Quote + *

200 - Success - return response of type Items array with newly created Item * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param quotes The quotes parameter + * @param items The items parameter * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any * with validation errors + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Quotes + * @return Items * @throws IOException if an error occurs while attempting to invoke the API * */ - public Quotes updateOrCreateQuotes( + public Items updateOrCreateItems( String accessToken, String xeroTenantId, - Quotes quotes, + Items items, Boolean summarizeErrors, + Integer unitdp, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateOrCreateQuotesForHttpResponse( - accessToken, xeroTenantId, quotes, summarizeErrors, idempotencyKey); + updateOrCreateItemsForHttpResponse( + accessToken, xeroTenantId, items, summarizeErrors, unitdp, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateOrCreateQuotes -------------------"); + + " : updateOrCreateItems -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -31201,9 +28264,9 @@ public Quotes updateOrCreateQuotes( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Quotes", object.getMessage(), e); + handler.validationError("Items", object.getMessage(), e); } - handler.validationError("Quotes", object, e); + handler.validationError("Items", object, e); } else { handler.execute(e); } @@ -31214,48 +28277,52 @@ public Quotes updateOrCreateQuotes( } /** - * Updates or creates one or more quotes + * Updates or creates one or more items * - *

200 - Success - return response of type Quotes array with updated or created Quote + *

200 - Success - return response of type Items array with newly created Item * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param quotes The quotes parameter + * @param items The items parameter * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any * with validation errors + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateOrCreateQuotesForHttpResponse( + public HttpResponse updateOrCreateItemsForHttpResponse( String accessToken, String xeroTenantId, - Quotes quotes, + Items items, Boolean summarizeErrors, + Integer unitdp, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateOrCreateQuotes"); - } // verify the required parameter 'quotes' is set - if (quotes == null) { + "Missing the required parameter 'xeroTenantId' when calling updateOrCreateItems"); + } // verify the required parameter 'items' is set + if (items == null) { throw new IllegalArgumentException( - "Missing the required parameter 'quotes' when calling updateOrCreateQuotes"); + "Missing the required parameter 'items' when calling updateOrCreateItems"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateOrCreateQuotes"); + "Missing the required parameter 'accessToken' when calling updateOrCreateItems"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Quotes"); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Items"); if (summarizeErrors != null) { String key = "summarizeErrors"; Object value = summarizeErrors; @@ -31276,6 +28343,26 @@ public HttpResponse updateOrCreateQuotesForHttpResponse( uriBuilder = uriBuilder.queryParam(key, value); } } + if (unitdp != null) { + String key = "unitdp"; + Object value = unitdp; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } String url = uriBuilder.build().toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { @@ -31283,7 +28370,7 @@ public HttpResponse updateOrCreateQuotesForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(quotes); + content = apiClient.new JacksonJsonHttpContent(items); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -31298,43 +28385,42 @@ public HttpResponse updateOrCreateQuotesForHttpResponse( } /** - * Creates or deletes one or more repeating invoice templates + * Updates or creates a single manual journal * - *

200 - Success - return response of type RepeatingInvoices array with newly created - * RepeatingInvoice + *

200 - Success - return response of type ManualJournals array with newly created + * ManualJournal * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param repeatingInvoices RepeatingInvoices with an array of repeating invoice objects in body - * of request + * @param manualJournals ManualJournals array with ManualJournal object in body of request * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return RepeatingInvoices + * @return ManualJournals * @throws IOException if an error occurs while attempting to invoke the API * */ - public RepeatingInvoices updateOrCreateRepeatingInvoices( + public ManualJournals updateOrCreateManualJournals( String accessToken, String xeroTenantId, - RepeatingInvoices repeatingInvoices, + ManualJournals manualJournals, Boolean summarizeErrors, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateOrCreateRepeatingInvoicesForHttpResponse( - accessToken, xeroTenantId, repeatingInvoices, summarizeErrors, idempotencyKey); + updateOrCreateManualJournalsForHttpResponse( + accessToken, xeroTenantId, manualJournals, summarizeErrors, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateOrCreateRepeatingInvoices -------------------"); + + " : updateOrCreateManualJournals -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -31344,9 +28430,9 @@ public RepeatingInvoices updateOrCreateRepeatingInvoices( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("RepeatingInvoices", object.getMessage(), e); + handler.validationError("ManualJournals", object.getMessage(), e); } - handler.validationError("RepeatingInvoices", object, e); + handler.validationError("ManualJournals", object, e); } else { handler.execute(e); } @@ -31357,16 +28443,15 @@ public RepeatingInvoices updateOrCreateRepeatingInvoices( } /** - * Creates or deletes one or more repeating invoice templates + * Updates or creates a single manual journal * - *

200 - Success - return response of type RepeatingInvoices array with newly created - * RepeatingInvoice + *

200 - Success - return response of type ManualJournals array with newly created + * ManualJournal * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param repeatingInvoices RepeatingInvoices with an array of repeating invoice objects in body - * of request + * @param manualJournals ManualJournals array with ManualJournal object in body of request * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate @@ -31375,10 +28460,10 @@ public RepeatingInvoices updateOrCreateRepeatingInvoices( * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateOrCreateRepeatingInvoicesForHttpResponse( + public HttpResponse updateOrCreateManualJournalsForHttpResponse( String accessToken, String xeroTenantId, - RepeatingInvoices repeatingInvoices, + ManualJournals manualJournals, Boolean summarizeErrors, String idempotencyKey) throws IOException { @@ -31386,24 +28471,24 @@ public HttpResponse updateOrCreateRepeatingInvoicesForHttpResponse( if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " updateOrCreateRepeatingInvoices"); - } // verify the required parameter 'repeatingInvoices' is set - if (repeatingInvoices == null) { + + " updateOrCreateManualJournals"); + } // verify the required parameter 'manualJournals' is set + if (manualJournals == null) { throw new IllegalArgumentException( - "Missing the required parameter 'repeatingInvoices' when calling" - + " updateOrCreateRepeatingInvoices"); + "Missing the required parameter 'manualJournals' when calling" + + " updateOrCreateManualJournals"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateOrCreateRepeatingInvoices"); + "Missing the required parameter 'accessToken' when calling updateOrCreateManualJournals"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/RepeatingInvoices"); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/ManualJournals"); if (summarizeErrors != null) { String key = "summarizeErrors"; Object value = summarizeErrors; @@ -31431,7 +28516,7 @@ public HttpResponse updateOrCreateRepeatingInvoicesForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(repeatingInvoices); + content = apiClient.new JacksonJsonHttpContent(manualJournals); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -31446,40 +28531,42 @@ public HttpResponse updateOrCreateRepeatingInvoicesForHttpResponse( } /** - * Updates a specific purchase order + * Updates or creates one or more purchase orders * - *

200 - Success - return response of type PurchaseOrder array for updated PurchaseOrder + *

200 - Success - return response of type PurchaseOrder array for specified + * PurchaseOrder * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrderID Unique identifier for an Purchase Order * @param purchaseOrders The purchaseOrders parameter + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return PurchaseOrders * @throws IOException if an error occurs while attempting to invoke the API * */ - public PurchaseOrders updatePurchaseOrder( + public PurchaseOrders updateOrCreatePurchaseOrders( String accessToken, String xeroTenantId, - UUID purchaseOrderID, PurchaseOrders purchaseOrders, + Boolean summarizeErrors, String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updatePurchaseOrderForHttpResponse( - accessToken, xeroTenantId, purchaseOrderID, purchaseOrders, idempotencyKey); + updateOrCreatePurchaseOrdersForHttpResponse( + accessToken, xeroTenantId, purchaseOrders, summarizeErrors, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updatePurchaseOrder -------------------"); + + " : updateOrCreatePurchaseOrders -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -31502,57 +28589,73 @@ public PurchaseOrders updatePurchaseOrder( } /** - * Updates a specific purchase order + * Updates or creates one or more purchase orders * - *

200 - Success - return response of type PurchaseOrder array for updated PurchaseOrder + *

200 - Success - return response of type PurchaseOrder array for specified + * PurchaseOrder * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrderID Unique identifier for an Purchase Order * @param purchaseOrders The purchaseOrders parameter + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updatePurchaseOrderForHttpResponse( + public HttpResponse updateOrCreatePurchaseOrdersForHttpResponse( String accessToken, String xeroTenantId, - UUID purchaseOrderID, PurchaseOrders purchaseOrders, + Boolean summarizeErrors, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updatePurchaseOrder"); - } // verify the required parameter 'purchaseOrderID' is set - if (purchaseOrderID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'purchaseOrderID' when calling updatePurchaseOrder"); + "Missing the required parameter 'xeroTenantId' when calling" + + " updateOrCreatePurchaseOrders"); } // verify the required parameter 'purchaseOrders' is set if (purchaseOrders == null) { throw new IllegalArgumentException( - "Missing the required parameter 'purchaseOrders' when calling updatePurchaseOrder"); + "Missing the required parameter 'purchaseOrders' when calling" + + " updateOrCreatePurchaseOrders"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updatePurchaseOrder"); + "Missing the required parameter 'accessToken' when calling updateOrCreatePurchaseOrders"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("PurchaseOrderID", purchaseOrderID); - - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders"); + if (summarizeErrors != null) { + String key = "summarizeErrors"; + Object value = summarizeErrors; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } + String url = uriBuilder.build().toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); @@ -31573,51 +28676,57 @@ public HttpResponse updatePurchaseOrderForHttpResponse( .execute(); } - // Overload params for updatePurchaseOrderAttachmentByFileName to allow byte[] or File type to be - // passed as body /** - * Updates a specific attachment for a specific purchase order by filename + * Updates or creates one or more quotes * - *

200 - Success - return response of type Attachments array of Attachment + *

200 - Success - return response of type Quotes array with updated or created Quote * - *

400 - Validation Error - some data was incorrect returns response of type Error + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrderID Unique identifier for an Purchase Order - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param quotes The quotes parameter + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request - * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @return Quotes + * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updatePurchaseOrderAttachmentByFileName( + public Quotes updateOrCreateQuotes( String accessToken, String xeroTenantId, - UUID purchaseOrderID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + Quotes quotes, + Boolean summarizeErrors, + String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updatePurchaseOrderAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, purchaseOrderID, fileName, body, idempotencyKey, mimeType); + updateOrCreateQuotesForHttpResponse( + accessToken, xeroTenantId, quotes, summarizeErrors, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updatePurchaseOrderAttachmentByFileName -------------------"); + + " : updateOrCreateQuotes -------------------"); logger.debug(e.toString()); } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Quotes", object.getMessage(), e); + } + handler.validationError("Quotes", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -31625,80 +28734,78 @@ public Attachments updatePurchaseOrderAttachmentByFileName( } /** - * Updates a specific attachment for a specific purchase order by filename + * Updates or creates one or more quotes * - *

200 - Success - return response of type Attachments array of Attachment + *

200 - Success - return response of type Quotes array with updated or created Quote * - *

400 - Validation Error - some data was incorrect returns response of type Error + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrderID Unique identifier for an Purchase Order - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param quotes The quotes parameter + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updatePurchaseOrderAttachmentByFileNameForHttpResponse( + public HttpResponse updateOrCreateQuotesForHttpResponse( String accessToken, String xeroTenantId, - UUID purchaseOrderID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + Quotes quotes, + Boolean summarizeErrors, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updatePurchaseOrderAttachmentByFileName"); - } // verify the required parameter 'purchaseOrderID' is set - if (purchaseOrderID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'purchaseOrderID' when calling" - + " updatePurchaseOrderAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updatePurchaseOrderAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + "Missing the required parameter 'xeroTenantId' when calling updateOrCreateQuotes"); + } // verify the required parameter 'quotes' is set + if (quotes == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " updatePurchaseOrderAttachmentByFileName"); + "Missing the required parameter 'quotes' when calling updateOrCreateQuotes"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updatePurchaseOrderAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling updateOrCreateQuotes"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("PurchaseOrderID", purchaseOrderID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Quotes"); + if (summarizeErrors != null) { + String key = "summarizeErrors"; + Object value = summarizeErrors; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } + String url = uriBuilder.build().toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(quotes); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -31712,42 +28819,43 @@ public HttpResponse updatePurchaseOrderAttachmentByFileNameForHttpResponse( } /** - * Updates a specific attachment for a specific purchase order by filename + * Creates or deletes one or more repeating invoice templates * - *

200 - Success - return response of type Attachments array of Attachment + *

200 - Success - return response of type RepeatingInvoices array with newly created + * RepeatingInvoice * - *

400 - Validation Error - some data was incorrect returns response of type Error + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrderID Unique identifier for an Purchase Order - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param repeatingInvoices RepeatingInvoices with an array of repeating invoice objects in body + * of request + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return RepeatingInvoices * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updatePurchaseOrderAttachmentByFileName( + public RepeatingInvoices updateOrCreateRepeatingInvoices( String accessToken, String xeroTenantId, - UUID purchaseOrderID, - String fileName, - File body, + RepeatingInvoices repeatingInvoices, + Boolean summarizeErrors, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updatePurchaseOrderAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, purchaseOrderID, fileName, body, idempotencyKey); + updateOrCreateRepeatingInvoicesForHttpResponse( + accessToken, xeroTenantId, repeatingInvoices, summarizeErrors, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updatePurchaseOrderAttachmentByFileName -------------------"); + + " : updateOrCreateRepeatingInvoices -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -31757,9 +28865,9 @@ public Attachments updatePurchaseOrderAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("RepeatingInvoices", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("RepeatingInvoices", object, e); } else { handler.execute(e); } @@ -31770,78 +28878,83 @@ public Attachments updatePurchaseOrderAttachmentByFileName( } /** - * Updates a specific attachment for a specific purchase order by filename + * Creates or deletes one or more repeating invoice templates * - *

200 - Success - return response of type Attachments array of Attachment + *

200 - Success - return response of type RepeatingInvoices array with newly created + * RepeatingInvoice * - *

400 - Validation Error - some data was incorrect returns response of type Error + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param purchaseOrderID Unique identifier for an Purchase Order - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param repeatingInvoices RepeatingInvoices with an array of repeating invoice objects in body + * of request + * @param summarizeErrors If false return 200 OK and mix of successfully created objects and any + * with validation errors * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updatePurchaseOrderAttachmentByFileNameForHttpResponse( + public HttpResponse updateOrCreateRepeatingInvoicesForHttpResponse( String accessToken, String xeroTenantId, - UUID purchaseOrderID, - String fileName, - File body, + RepeatingInvoices repeatingInvoices, + Boolean summarizeErrors, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " updatePurchaseOrderAttachmentByFileName"); - } // verify the required parameter 'purchaseOrderID' is set - if (purchaseOrderID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'purchaseOrderID' when calling" - + " updatePurchaseOrderAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updatePurchaseOrderAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + + " updateOrCreateRepeatingInvoices"); + } // verify the required parameter 'repeatingInvoices' is set + if (repeatingInvoices == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " updatePurchaseOrderAttachmentByFileName"); + "Missing the required parameter 'repeatingInvoices' when calling" + + " updateOrCreateRepeatingInvoices"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " updatePurchaseOrderAttachmentByFileName"); + + " updateOrCreateRepeatingInvoices"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("PurchaseOrderID", purchaseOrderID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/RepeatingInvoices"); + if (summarizeErrors != null) { + String key = "summarizeErrors"; + Object value = summarizeErrors; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } + String url = uriBuilder.build().toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(repeatingInvoices); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -31855,35 +28968,40 @@ public HttpResponse updatePurchaseOrderAttachmentByFileNameForHttpResponse( } /** - * Updates a specific quote + * Updates a specific purchase order * - *

200 - Success - return response of type Quotes array with updated Quote + *

200 - Success - return response of type PurchaseOrder array for updated PurchaseOrder * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param quoteID Unique identifier for an Quote - * @param quotes The quotes parameter + * @param purchaseOrderID Unique identifier for an Purchase Order + * @param purchaseOrders The purchaseOrders parameter * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Quotes + * @return PurchaseOrders * @throws IOException if an error occurs while attempting to invoke the API * */ - public Quotes updateQuote( - String accessToken, String xeroTenantId, UUID quoteID, Quotes quotes, String idempotencyKey) + public PurchaseOrders updatePurchaseOrder( + String accessToken, + String xeroTenantId, + UUID purchaseOrderID, + PurchaseOrders purchaseOrders, + String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateQuoteForHttpResponse(accessToken, xeroTenantId, quoteID, quotes, idempotencyKey); + updatePurchaseOrderForHttpResponse( + accessToken, xeroTenantId, purchaseOrderID, purchaseOrders, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateQuote -------------------"); + + " : updatePurchaseOrder -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -31893,9 +29011,9 @@ public Quotes updateQuote( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Quotes", object.getMessage(), e); + handler.validationError("PurchaseOrders", object.getMessage(), e); } - handler.validationError("Quotes", object, e); + handler.validationError("PurchaseOrders", object, e); } else { handler.execute(e); } @@ -31906,51 +29024,57 @@ public Quotes updateQuote( } /** - * Updates a specific quote + * Updates a specific purchase order * - *

200 - Success - return response of type Quotes array with updated Quote + *

200 - Success - return response of type PurchaseOrder array for updated PurchaseOrder * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant - * @param quoteID Unique identifier for an Quote - * @param quotes The quotes parameter + * @param purchaseOrderID Unique identifier for an Purchase Order + * @param purchaseOrders The purchaseOrders parameter * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateQuoteForHttpResponse( - String accessToken, String xeroTenantId, UUID quoteID, Quotes quotes, String idempotencyKey) + public HttpResponse updatePurchaseOrderForHttpResponse( + String accessToken, + String xeroTenantId, + UUID purchaseOrderID, + PurchaseOrders purchaseOrders, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateQuote"); - } // verify the required parameter 'quoteID' is set - if (quoteID == null) { + "Missing the required parameter 'xeroTenantId' when calling updatePurchaseOrder"); + } // verify the required parameter 'purchaseOrderID' is set + if (purchaseOrderID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'quoteID' when calling updateQuote"); - } // verify the required parameter 'quotes' is set - if (quotes == null) { + "Missing the required parameter 'purchaseOrderID' when calling updatePurchaseOrder"); + } // verify the required parameter 'purchaseOrders' is set + if (purchaseOrders == null) { throw new IllegalArgumentException( - "Missing the required parameter 'quotes' when calling updateQuote"); + "Missing the required parameter 'purchaseOrders' when calling updatePurchaseOrder"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateQuote"); + "Missing the required parameter 'accessToken' when calling updatePurchaseOrder"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("QuoteID", quoteID); + uriVariables.put("PurchaseOrderID", purchaseOrderID); - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Quotes/{QuoteID}"); + UriBuilder uriBuilder = + UriBuilder.fromUri(apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { @@ -31958,7 +29082,7 @@ public HttpResponse updateQuoteForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(quotes); + content = apiClient.new JacksonJsonHttpContent(purchaseOrders); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -31972,51 +29096,58 @@ public HttpResponse updateQuoteForHttpResponse( .execute(); } - // Overload params for updateQuoteAttachmentByFileName to allow byte[] or File type to be passed - // as body /** - * Updates a specific attachment from a specific quote by filename + * Updates a specific attachment for a specific purchase order by filename * *

200 - Success - return response of type Attachments array of Attachment * *

400 - Validation Error - some data was incorrect returns response of type Error * * @param xeroTenantId Xero identifier for Tenant - * @param quoteID Unique identifier for an Quote + * @param purchaseOrderID Unique identifier for an Purchase Order * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateQuoteAttachmentByFileName( + public Attachments updatePurchaseOrderAttachmentByFileName( String accessToken, String xeroTenantId, - UUID quoteID, + UUID purchaseOrderID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { try { TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateQuoteAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, quoteID, fileName, body, idempotencyKey, mimeType); + updatePurchaseOrderAttachmentByFileNameForHttpResponse( + accessToken, xeroTenantId, purchaseOrderID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateQuoteAttachmentByFileName -------------------"); + + " : updatePurchaseOrderAttachmentByFileName -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Attachments", object.getMessage(), e); + } + handler.validationError("Attachments", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -32024,76 +29155,79 @@ public Attachments updateQuoteAttachmentByFileName( } /** - * Updates a specific attachment from a specific quote by filename + * Updates a specific attachment for a specific purchase order by filename * *

200 - Success - return response of type Attachments array of Attachment * *

400 - Validation Error - some data was incorrect returns response of type Error * * @param xeroTenantId Xero identifier for Tenant - * @param quoteID Unique identifier for an Quote + * @param purchaseOrderID Unique identifier for an Purchase Order * @param fileName Name of the attachment * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateQuoteAttachmentByFileNameForHttpResponse( + public HttpResponse updatePurchaseOrderAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, - UUID quoteID, + UUID purchaseOrderID, String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + File body, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( "Missing the required parameter 'xeroTenantId' when calling" - + " updateQuoteAttachmentByFileName"); - } // verify the required parameter 'quoteID' is set - if (quoteID == null) { + + " updatePurchaseOrderAttachmentByFileName"); + } // verify the required parameter 'purchaseOrderID' is set + if (purchaseOrderID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'quoteID' when calling updateQuoteAttachmentByFileName"); + "Missing the required parameter 'purchaseOrderID' when calling" + + " updatePurchaseOrderAttachmentByFileName"); } // verify the required parameter 'fileName' is set if (fileName == null) { throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling updateQuoteAttachmentByFileName"); + "Missing the required parameter 'fileName' when calling" + + " updatePurchaseOrderAttachmentByFileName"); } // verify the required parameter 'body' is set if (body == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling updateQuoteAttachmentByFileName"); + "Missing the required parameter 'body' when calling" + + " updatePurchaseOrderAttachmentByFileName"); } if (accessToken == null) { throw new IllegalArgumentException( "Missing the required parameter 'accessToken' when calling" - + " updateQuoteAttachmentByFileName"); + + " updatePurchaseOrderAttachmentByFileName"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); - uriVariables.put("QuoteID", quoteID); + uriVariables.put("PurchaseOrderID", purchaseOrderID); uriVariables.put("FileName", fileName); UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/Quotes/{QuoteID}/Attachments/{FileName}"); + UriBuilder.fromUri( + apiClient.getBasePath() + "/PurchaseOrders/{PurchaseOrderID}/Attachments/{FileName}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(body); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -32107,42 +29241,35 @@ public HttpResponse updateQuoteAttachmentByFileNameForHttpResponse( } /** - * Updates a specific attachment from a specific quote by filename + * Updates a specific quote * - *

200 - Success - return response of type Attachments array of Attachment + *

200 - Success - return response of type Quotes array with updated Quote * - *

400 - Validation Error - some data was incorrect returns response of type Error + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param quoteID Unique identifier for an Quote - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param quotes The quotes parameter * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Attachments + * @return Quotes * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateQuoteAttachmentByFileName( - String accessToken, - String xeroTenantId, - UUID quoteID, - String fileName, - File body, - String idempotencyKey) + public Quotes updateQuote( + String accessToken, String xeroTenantId, UUID quoteID, Quotes quotes, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateQuoteAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, quoteID, fileName, body, idempotencyKey); + updateQuoteForHttpResponse(accessToken, xeroTenantId, quoteID, quotes, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateQuoteAttachmentByFileName -------------------"); + + " : updateQuote -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -32152,9 +29279,9 @@ public Attachments updateQuoteAttachmentByFileName( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Attachments", object.getMessage(), e); + handler.validationError("Quotes", object.getMessage(), e); } - handler.validationError("Attachments", object, e); + handler.validationError("Quotes", object, e); } else { handler.execute(e); } @@ -32165,74 +29292,61 @@ public Attachments updateQuoteAttachmentByFileName( } /** - * Updates a specific attachment from a specific quote by filename + * Updates a specific quote * - *

200 - Success - return response of type Attachments array of Attachment + *

200 - Success - return response of type Quotes array with updated Quote * - *

400 - Validation Error - some data was incorrect returns response of type Error + *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param quoteID Unique identifier for an Quote - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param quotes The quotes parameter * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateQuoteAttachmentByFileNameForHttpResponse( - String accessToken, - String xeroTenantId, - UUID quoteID, - String fileName, - File body, - String idempotencyKey) + public HttpResponse updateQuoteForHttpResponse( + String accessToken, String xeroTenantId, UUID quoteID, Quotes quotes, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateQuoteAttachmentByFileName"); + "Missing the required parameter 'xeroTenantId' when calling updateQuote"); } // verify the required parameter 'quoteID' is set if (quoteID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'quoteID' when calling updateQuoteAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling updateQuoteAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + "Missing the required parameter 'quoteID' when calling updateQuote"); + } // verify the required parameter 'quotes' is set + if (quotes == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling updateQuoteAttachmentByFileName"); + "Missing the required parameter 'quotes' when calling updateQuote"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateQuoteAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling updateQuote"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); uriVariables.put("QuoteID", quoteID); - uriVariables.put("FileName", fileName); - UriBuilder uriBuilder = - UriBuilder.fromUri(apiClient.getBasePath() + "/Quotes/{QuoteID}/Attachments/{FileName}"); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Quotes/{QuoteID}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(quotes); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -32246,43 +29360,42 @@ public HttpResponse updateQuoteAttachmentByFileNameForHttpResponse( } /** - * Updates a specific draft expense claim receipts + * Updates a specific attachment from a specific quote by filename * - *

200 - Success - return response of type Receipts array for updated Receipt + *

200 - Success - return response of type Attachments array of Attachment * - *

400 - A failed request due to validation error + *

400 - Validation Error - some data was incorrect returns response of type Error * * @param xeroTenantId Xero identifier for Tenant - * @param receiptID Unique identifier for a Receipt - * @param receipts The receipts parameter - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts + * @param quoteID Unique identifier for an Quote + * @param fileName Name of the attachment + * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request - * @return Receipts + * @return Attachments * @throws IOException if an error occurs while attempting to invoke the API * */ - public Receipts updateReceipt( + public Attachments updateQuoteAttachmentByFileName( String accessToken, String xeroTenantId, - UUID receiptID, - Receipts receipts, - Integer unitdp, + UUID quoteID, + String fileName, + File body, String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateReceiptForHttpResponse( - accessToken, xeroTenantId, receiptID, receipts, unitdp, idempotencyKey); + updateQuoteAttachmentByFileNameForHttpResponse( + accessToken, xeroTenantId, quoteID, fileName, body, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateReceipt -------------------"); + + " : updateQuoteAttachmentByFileName -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); @@ -32292,9 +29405,9 @@ public Receipts updateReceipt( com.xero.models.accounting.Error object = apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); if (object.getElements() == null || object.getElements().isEmpty()) { - handler.validationError("Receipts", object.getMessage(), e); + handler.validationError("Attachments", object.getMessage(), e); } - handler.validationError("Receipts", object, e); + handler.validationError("Attachments", object, e); } else { handler.execute(e); } @@ -32305,78 +29418,66 @@ public Receipts updateReceipt( } /** - * Updates a specific draft expense claim receipts + * Updates a specific attachment from a specific quote by filename * - *

200 - Success - return response of type Receipts array for updated Receipt + *

200 - Success - return response of type Attachments array of Attachment * - *

400 - A failed request due to validation error + *

400 - Validation Error - some data was incorrect returns response of type Error * * @param xeroTenantId Xero identifier for Tenant - * @param receiptID Unique identifier for a Receipt - * @param receipts The receipts parameter - * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal - * places for unit amounts + * @param quoteID Unique identifier for an Quote + * @param fileName Name of the attachment + * @param body Byte array of file in body of request * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. * @param accessToken Authorization token for user set in header of each request * @return HttpResponse * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateReceiptForHttpResponse( + public HttpResponse updateQuoteAttachmentByFileNameForHttpResponse( String accessToken, String xeroTenantId, - UUID receiptID, - Receipts receipts, - Integer unitdp, + UUID quoteID, + String fileName, + File body, String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling updateReceipt"); - } // verify the required parameter 'receiptID' is set - if (receiptID == null) { + "Missing the required parameter 'xeroTenantId' when calling" + + " updateQuoteAttachmentByFileName"); + } // verify the required parameter 'quoteID' is set + if (quoteID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'receiptID' when calling updateReceipt"); - } // verify the required parameter 'receipts' is set - if (receipts == null) { + "Missing the required parameter 'quoteID' when calling updateQuoteAttachmentByFileName"); + } // verify the required parameter 'fileName' is set + if (fileName == null) { throw new IllegalArgumentException( - "Missing the required parameter 'receipts' when calling updateReceipt"); + "Missing the required parameter 'fileName' when calling updateQuoteAttachmentByFileName"); + } // verify the required parameter 'body' is set + if (body == null) { + throw new IllegalArgumentException( + "Missing the required parameter 'body' when calling updateQuoteAttachmentByFileName"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling updateReceipt"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("ReceiptID", receiptID); - - UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Receipts/{ReceiptID}"); - if (unitdp != null) { - String key = "unitdp"; - Object value = unitdp; - if (value instanceof Collection) { - List valueList = new ArrayList<>((Collection) value); - if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { - List list = new ArrayList(); - for (int i = 0; i < valueList.size(); i++) { - list.add(valueList.get(i).toString()); - } - uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); - } else { - uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); - } - } else if (value instanceof Object[]) { - uriBuilder = uriBuilder.queryParam(key, (Object[]) value); - } else { - uriBuilder = uriBuilder.queryParam(key, value); - } + "Missing the required parameter 'accessToken' when calling" + + " updateQuoteAttachmentByFileName"); } + HttpHeaders headers = new HttpHeaders(); + headers.set("xero-tenant-id", xeroTenantId); + headers.set("Idempotency-Key", idempotencyKey); + headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); + headers.setUserAgent(this.getUserAgent()); + // create a map of path variables + final Map uriVariables = new HashMap(); + uriVariables.put("QuoteID", quoteID); + uriVariables.put("FileName", fileName); + + UriBuilder uriBuilder = + UriBuilder.fromUri(apiClient.getBasePath() + "/Quotes/{QuoteID}/Attachments/{FileName}"); String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { @@ -32384,7 +29485,7 @@ public HttpResponse updateReceiptForHttpResponse( } HttpContent content = null; - content = apiClient.new JacksonJsonHttpContent(receipts); + content = apiClient.new JacksonJsonHttpContent(body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); @@ -32398,52 +29499,59 @@ public HttpResponse updateReceiptForHttpResponse( .execute(); } - // Overload params for updateReceiptAttachmentByFileName to allow byte[] or File type to be passed - // as body /** - * Updates a specific attachment on a specific expense claim receipts by file name + * Updates a specific draft expense claim receipts * - *

200 - Success - return response of type Attachments array with updated Attachment for - * a specified Receipt + *

200 - Success - return response of type Receipts array for updated Receipt * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param receiptID Unique identifier for a Receipt - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param receipts The receipts parameter + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request - * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API + * @return Receipts + * @throws IOException if an error occurs while attempting to invoke the API * */ - public Attachments updateReceiptAttachmentByFileName( + public Receipts updateReceipt( String accessToken, String xeroTenantId, UUID receiptID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + Receipts receipts, + Integer unitdp, + String idempotencyKey) throws IOException { try { - TypeReference typeRef = new TypeReference() {}; + TypeReference typeRef = new TypeReference() {}; HttpResponse response = - updateReceiptAttachmentByFileNameForHttpResponse( - accessToken, xeroTenantId, receiptID, fileName, body, idempotencyKey, mimeType); + updateReceiptForHttpResponse( + accessToken, xeroTenantId, receiptID, receipts, unitdp, idempotencyKey); return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); } catch (HttpResponseException e) { if (logger.isDebugEnabled()) { logger.debug( "------------------ HttpResponseException " + e.getStatusCode() - + " : updateReceiptAttachmentByFileName -------------------"); + + " : updateReceipt -------------------"); logger.debug(e.toString()); } XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); + if (e.getStatusCode() == 400) { + TypeReference errorTypeRef = + new TypeReference() {}; + com.xero.models.accounting.Error object = + apiClient.getObjectMapper().readValue(e.getContent(), errorTypeRef); + if (object.getElements() == null || object.getElements().isEmpty()) { + handler.validationError("Receipts", object.getMessage(), e); + } + handler.validationError("Receipts", object, e); + } else { + handler.execute(e); + } } catch (IOException ioe) { throw ioe; } @@ -32451,80 +29559,88 @@ public Attachments updateReceiptAttachmentByFileName( } /** - * Updates a specific attachment on a specific expense claim receipts by file name + * Updates a specific draft expense claim receipts * - *

200 - Success - return response of type Attachments array with updated Attachment for - * a specified Receipt + *

200 - Success - return response of type Receipts array for updated Receipt * *

400 - A failed request due to validation error * * @param xeroTenantId Xero identifier for Tenant * @param receiptID Unique identifier for a Receipt - * @param fileName Name of the attachment - * @param body Byte array of file in body of request + * @param receipts The receipts parameter + * @param unitdp e.g. unitdp=4 – (Unit Decimal Places) You can opt in to use four decimal + * places for unit amounts * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate * processing. 128 character max. - * @param mimeType The type of file being attached * @param accessToken Authorization token for user set in header of each request * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * + * @throws IOException if an error occurs while attempting to invoke the API */ - public HttpResponse updateReceiptAttachmentByFileNameForHttpResponse( + public HttpResponse updateReceiptForHttpResponse( String accessToken, String xeroTenantId, UUID receiptID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) + Receipts receipts, + Integer unitdp, + String idempotencyKey) throws IOException { // verify the required parameter 'xeroTenantId' is set if (xeroTenantId == null) { throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateReceiptAttachmentByFileName"); + "Missing the required parameter 'xeroTenantId' when calling updateReceipt"); } // verify the required parameter 'receiptID' is set if (receiptID == null) { throw new IllegalArgumentException( - "Missing the required parameter 'receiptID' when calling" - + " updateReceiptAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updateReceiptAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { + "Missing the required parameter 'receiptID' when calling updateReceipt"); + } // verify the required parameter 'receipts' is set + if (receipts == null) { throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling updateReceiptAttachmentByFileName"); + "Missing the required parameter 'receipts' when calling updateReceipt"); } if (accessToken == null) { throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateReceiptAttachmentByFileName"); + "Missing the required parameter 'accessToken' when calling updateReceipt"); } HttpHeaders headers = new HttpHeaders(); headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); uriVariables.put("ReceiptID", receiptID); - uriVariables.put("FileName", fileName); - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() + "/Receipts/{ReceiptID}/Attachments/{FileName}"); + UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Receipts/{ReceiptID}"); + if (unitdp != null) { + String key = "unitdp"; + Object value = unitdp; + if (value instanceof Collection) { + List valueList = new ArrayList<>((Collection) value); + if (!valueList.isEmpty() && valueList.get(0) instanceof UUID) { + List list = new ArrayList(); + for (int i = 0; i < valueList.size(); i++) { + list.add(valueList.get(i).toString()); + } + uriBuilder = uriBuilder.queryParam(key, String.join(",", list)); + } else { + uriBuilder = uriBuilder.queryParam(key, String.join(",", valueList)); + } + } else if (value instanceof Object[]) { + uriBuilder = uriBuilder.queryParam(key, (Object[]) value); + } else { + uriBuilder = uriBuilder.queryParam(key, value); + } + } String url = uriBuilder.buildFromMap(uriVariables).toString(); GenericUrl genericUrl = new GenericUrl(url); if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - ByteArrayContent content = null; + HttpContent content = null; + content = apiClient.new JacksonJsonHttpContent(receipts); - content = new ByteArrayContent(mimeType, body); Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -32651,6 +29767,7 @@ public HttpResponse updateReceiptAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -32665,10 +29782,10 @@ public HttpResponse updateReceiptAttachmentByFileNameForHttpResponse( if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(body); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -32782,6 +29899,7 @@ public HttpResponse updateRepeatingInvoiceForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -32810,153 +29928,6 @@ public HttpResponse updateRepeatingInvoiceForHttpResponse( .execute(); } - // Overload params for updateRepeatingInvoiceAttachmentByFileName to allow byte[] or File type to - // be passed as body - /** - * Updates a specific attachment from a specific repeating invoices by file name - * - *

200 - Success - return response of type Attachments array with specified Attachment - * for a specified Repeating Invoice - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param repeatingInvoiceID Unique identifier for a Repeating Invoice - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param mimeType The type of file being attached - * @param accessToken Authorization token for user set in header of each request - * @return Attachments - * @throws IOException if an error occurs while attempting to invoke the API - */ - public Attachments updateRepeatingInvoiceAttachmentByFileName( - String accessToken, - String xeroTenantId, - UUID repeatingInvoiceID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) - throws IOException { - try { - TypeReference typeRef = new TypeReference() {}; - HttpResponse response = - updateRepeatingInvoiceAttachmentByFileNameForHttpResponse( - accessToken, - xeroTenantId, - repeatingInvoiceID, - fileName, - body, - idempotencyKey, - mimeType); - return apiClient.getObjectMapper().readValue(response.getContent(), typeRef); - } catch (HttpResponseException e) { - if (logger.isDebugEnabled()) { - logger.debug( - "------------------ HttpResponseException " - + e.getStatusCode() - + " : updateRepeatingInvoiceAttachmentByFileName -------------------"); - logger.debug(e.toString()); - } - XeroApiExceptionHandler handler = new XeroApiExceptionHandler(); - handler.execute(e); - } catch (IOException ioe) { - throw ioe; - } - return null; - } - - /** - * Updates a specific attachment from a specific repeating invoices by file name - * - *

200 - Success - return response of type Attachments array with specified Attachment - * for a specified Repeating Invoice - * - *

400 - A failed request due to validation error - * - * @param xeroTenantId Xero identifier for Tenant - * @param repeatingInvoiceID Unique identifier for a Repeating Invoice - * @param fileName Name of the attachment - * @param body Byte array of file in body of request - * @param idempotencyKey This allows you to safely retry requests without the risk of duplicate - * processing. 128 character max. - * @param mimeType The type of file being attached - * @param accessToken Authorization token for user set in header of each request - * @return HttpResponse - * @throws IOException if an error occurs while attempting to invoke the API * - */ - public HttpResponse updateRepeatingInvoiceAttachmentByFileNameForHttpResponse( - String accessToken, - String xeroTenantId, - UUID repeatingInvoiceID, - String fileName, - byte[] body, - String idempotencyKey, - String mimeType) - throws IOException { - // verify the required parameter 'xeroTenantId' is set - if (xeroTenantId == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'xeroTenantId' when calling" - + " updateRepeatingInvoiceAttachmentByFileName"); - } // verify the required parameter 'repeatingInvoiceID' is set - if (repeatingInvoiceID == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'repeatingInvoiceID' when calling" - + " updateRepeatingInvoiceAttachmentByFileName"); - } // verify the required parameter 'fileName' is set - if (fileName == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'fileName' when calling" - + " updateRepeatingInvoiceAttachmentByFileName"); - } // verify the required parameter 'body' is set - if (body == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'body' when calling" - + " updateRepeatingInvoiceAttachmentByFileName"); - } - if (accessToken == null) { - throw new IllegalArgumentException( - "Missing the required parameter 'accessToken' when calling" - + " updateRepeatingInvoiceAttachmentByFileName"); - } - HttpHeaders headers = new HttpHeaders(); - headers.set("xero-tenant-id", xeroTenantId); - headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/json"); - headers.setUserAgent(this.getUserAgent()); - // create a map of path variables - final Map uriVariables = new HashMap(); - uriVariables.put("RepeatingInvoiceID", repeatingInvoiceID); - uriVariables.put("FileName", fileName); - - UriBuilder uriBuilder = - UriBuilder.fromUri( - apiClient.getBasePath() - + "/RepeatingInvoices/{RepeatingInvoiceID}/Attachments/{FileName}"); - String url = uriBuilder.buildFromMap(uriVariables).toString(); - GenericUrl genericUrl = new GenericUrl(url); - if (logger.isDebugEnabled()) { - logger.debug("POST " + genericUrl.toString()); - } - - ByteArrayContent content = null; - - content = new ByteArrayContent(mimeType, body); - Credential credential = - new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); - HttpTransport transport = apiClient.getHttpTransport(); - HttpRequestFactory requestFactory = transport.createRequestFactory(credential); - return requestFactory - .buildRequest(HttpMethods.POST, genericUrl, content) - .setHeaders(headers) - .setConnectTimeout(apiClient.getConnectionTimeout()) - .setReadTimeout(apiClient.getReadTimeout()) - .execute(); - } - /** * Updates a specific attachment from a specific repeating invoices by file name * @@ -33072,6 +30043,7 @@ public HttpResponse updateRepeatingInvoiceAttachmentByFileNameForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/octet-stream"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -33087,10 +30059,10 @@ public HttpResponse updateRepeatingInvoiceAttachmentByFileNameForHttpResponse( if (logger.isDebugEnabled()) { logger.debug("POST " + genericUrl.toString()); } - java.nio.file.Path bodyPath = body.toPath(); - String mimeType = java.nio.file.Files.probeContentType(bodyPath); + HttpContent content = null; - content = new FileContent(mimeType, body); + content = apiClient.new JacksonJsonHttpContent(body); + Credential credential = new Credential(BearerToken.authorizationHeaderAccessMethod()).setAccessToken(accessToken); HttpTransport transport = apiClient.getHttpTransport(); @@ -33188,6 +30160,7 @@ public HttpResponse updateTaxRateForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/TaxRates"); String url = uriBuilder.build().toString(); @@ -33314,6 +30287,7 @@ public HttpResponse updateTrackingCategoryForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -33457,6 +30431,7 @@ public HttpResponse updateTrackingOptionsForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); diff --git a/src/main/java/com/xero/api/client/AppStoreApi.java b/src/main/java/com/xero/api/client/AppStoreApi.java index 8b7cc13a..b97b920d 100644 --- a/src/main/java/com/xero/api/client/AppStoreApi.java +++ b/src/main/java/com/xero/api/client/AppStoreApi.java @@ -372,6 +372,7 @@ public HttpResponse postUsageRecordsForHttpResponse( HttpHeaders headers = new HttpHeaders(); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -504,6 +505,7 @@ public HttpResponse putUsageRecordsForHttpResponse( HttpHeaders headers = new HttpHeaders(); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); diff --git a/src/main/java/com/xero/api/client/AssetApi.java b/src/main/java/com/xero/api/client/AssetApi.java index 02501798..606c8db8 100644 --- a/src/main/java/com/xero/api/client/AssetApi.java +++ b/src/main/java/com/xero/api/client/AssetApi.java @@ -197,6 +197,7 @@ public HttpResponse createAssetForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Assets"); String url = uriBuilder.build().toString(); @@ -306,6 +307,7 @@ public HttpResponse createAssetTypeForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/AssetTypes"); String url = uriBuilder.build().toString(); diff --git a/src/main/java/com/xero/api/client/BankFeedsApi.java b/src/main/java/com/xero/api/client/BankFeedsApi.java index 452d5331..8a01cb32 100644 --- a/src/main/java/com/xero/api/client/BankFeedsApi.java +++ b/src/main/java/com/xero/api/client/BankFeedsApi.java @@ -204,6 +204,7 @@ public HttpResponse createFeedConnectionsForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/FeedConnections"); String url = uriBuilder.build().toString(); @@ -327,7 +328,8 @@ public HttpResponse createStatementsForHttpResponse( HttpHeaders headers = new HttpHeaders(); headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); - headers.setAccept("application/jsonapplication/problem+json"); + headers.setAccept("application/json;application/problem+json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Statements"); String url = uriBuilder.build().toString(); @@ -434,6 +436,7 @@ public HttpResponse deleteFeedConnectionsForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/FeedConnections/DeleteRequests"); @@ -872,7 +875,7 @@ public HttpResponse getStatementsForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Xero-Application-Id", xeroApplicationId); headers.set("Xero-User-Id", xeroUserId); - headers.setAccept("application/jsonapplication/problem+json"); + headers.setAccept("application/json;application/problem+json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Statements"); if (page != null) { diff --git a/src/main/java/com/xero/api/client/FilesApi.java b/src/main/java/com/xero/api/client/FilesApi.java index 3027d1d0..edf38e41 100644 --- a/src/main/java/com/xero/api/client/FilesApi.java +++ b/src/main/java/com/xero/api/client/FilesApi.java @@ -211,6 +211,7 @@ public HttpResponse createFileAssociationForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -313,6 +314,7 @@ public HttpResponse createFolderForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Folders"); String url = uriBuilder.build().toString(); @@ -1658,6 +1660,7 @@ public HttpResponse updateFileForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1767,6 +1770,7 @@ public HttpResponse updateFolderForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1895,6 +1899,7 @@ public HttpResponse uploadFileForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("multipart/form-data"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Files"); String url = uriBuilder.build().toString(); @@ -2052,6 +2057,7 @@ public HttpResponse uploadFileToFolderForHttpResponse( headers.set("xero-tenant-id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("multipart/form-data"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); diff --git a/src/main/java/com/xero/api/client/PayrollAuApi.java b/src/main/java/com/xero/api/client/PayrollAuApi.java index c796d4fa..f77386a5 100644 --- a/src/main/java/com/xero/api/client/PayrollAuApi.java +++ b/src/main/java/com/xero/api/client/PayrollAuApi.java @@ -321,6 +321,7 @@ public HttpResponse createEmployeeForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Employees"); String url = uriBuilder.build().toString(); @@ -439,6 +440,7 @@ public HttpResponse createLeaveApplicationForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/LeaveApplications"); String url = uriBuilder.build().toString(); @@ -536,6 +538,7 @@ public HttpResponse createPayItemForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/PayItems"); String url = uriBuilder.build().toString(); @@ -646,6 +649,7 @@ public HttpResponse createPayRunForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/PayRuns"); String url = uriBuilder.build().toString(); @@ -764,6 +768,7 @@ public HttpResponse createPayrollCalendarForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/PayrollCalendars"); String url = uriBuilder.build().toString(); @@ -874,6 +879,7 @@ public HttpResponse createSuperfundForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Superfunds"); String url = uriBuilder.build().toString(); @@ -984,6 +990,7 @@ public HttpResponse createTimesheetForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Timesheets"); String url = uriBuilder.build().toString(); @@ -3343,6 +3350,7 @@ public HttpResponse updateEmployeeForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -3460,6 +3468,7 @@ public HttpResponse updateLeaveApplicationForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -3572,6 +3581,7 @@ public HttpResponse updatePayRunForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -3692,6 +3702,7 @@ public HttpResponse updatePayslipForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -3804,6 +3815,7 @@ public HttpResponse updateSuperfundForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -3917,6 +3929,7 @@ public HttpResponse updateTimesheetForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); diff --git a/src/main/java/com/xero/api/client/PayrollNzApi.java b/src/main/java/com/xero/api/client/PayrollNzApi.java index fd92d0bc..d8ff7e66 100644 --- a/src/main/java/com/xero/api/client/PayrollNzApi.java +++ b/src/main/java/com/xero/api/client/PayrollNzApi.java @@ -363,6 +363,7 @@ public HttpResponse createDeductionForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Deductions"); String url = uriBuilder.build().toString(); @@ -468,6 +469,7 @@ public HttpResponse createEarningsRateForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/EarningsRates"); String url = uriBuilder.build().toString(); @@ -571,6 +573,7 @@ public HttpResponse createEmployeeForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Employees"); String url = uriBuilder.build().toString(); @@ -697,6 +700,7 @@ public HttpResponse createEmployeeEarningsTemplateForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -823,6 +827,7 @@ public HttpResponse createEmployeeLeaveForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -953,6 +958,7 @@ public HttpResponse createEmployeeLeaveSetupForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1081,6 +1087,7 @@ public HttpResponse createEmployeeLeaveTypeForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1211,6 +1218,7 @@ public HttpResponse createEmployeeOpeningBalancesForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1337,6 +1345,7 @@ public HttpResponse createEmployeePaymentMethodForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1463,6 +1472,7 @@ public HttpResponse createEmployeeSalaryAndWageForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1601,6 +1611,7 @@ public HttpResponse createEmployeeWorkingPatternForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1725,6 +1736,7 @@ public HttpResponse createEmploymentForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1834,6 +1846,7 @@ public HttpResponse createLeaveTypeForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/LeaveTypes"); String url = uriBuilder.build().toString(); @@ -1960,6 +1973,7 @@ public HttpResponse createMultipleEmployeeEarningsTemplateForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -2068,6 +2082,7 @@ public HttpResponse createPayRunForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/PayRuns"); String url = uriBuilder.build().toString(); @@ -2174,6 +2189,7 @@ public HttpResponse createPayRunCalendarForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/PayRunCalendars"); String url = uriBuilder.build().toString(); @@ -2280,6 +2296,7 @@ public HttpResponse createReimbursementForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Reimbursements"); String url = uriBuilder.build().toString(); @@ -2385,6 +2402,7 @@ public HttpResponse createSuperannuationForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Superannuations"); String url = uriBuilder.build().toString(); @@ -2489,6 +2507,7 @@ public HttpResponse createTimesheetForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Timesheets"); String url = uriBuilder.build().toString(); @@ -2609,6 +2628,7 @@ public HttpResponse createTimesheetLineForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7355,6 +7375,7 @@ public HttpResponse updateEmployeeForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7499,6 +7520,7 @@ public HttpResponse updateEmployeeEarningsTemplateForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7635,6 +7657,7 @@ public HttpResponse updateEmployeeLeaveForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7776,6 +7799,7 @@ public HttpResponse updateEmployeeSalaryAndWageForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7898,6 +7922,7 @@ public HttpResponse updateEmployeeTaxForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -8012,6 +8037,7 @@ public HttpResponse updatePayRunForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -8134,6 +8160,7 @@ public HttpResponse updatePaySlipLineItemsForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -8271,6 +8298,7 @@ public HttpResponse updateTimesheetLineForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); diff --git a/src/main/java/com/xero/api/client/PayrollUkApi.java b/src/main/java/com/xero/api/client/PayrollUkApi.java index c71e0615..97358466 100644 --- a/src/main/java/com/xero/api/client/PayrollUkApi.java +++ b/src/main/java/com/xero/api/client/PayrollUkApi.java @@ -359,6 +359,7 @@ public HttpResponse createBenefitForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Benefits"); String url = uriBuilder.build().toString(); @@ -463,6 +464,7 @@ public HttpResponse createDeductionForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Deductions"); String url = uriBuilder.build().toString(); @@ -568,6 +570,7 @@ public HttpResponse createEarningsRateForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/EarningsRates"); String url = uriBuilder.build().toString(); @@ -671,6 +674,7 @@ public HttpResponse createEmployeeForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Employees"); String url = uriBuilder.build().toString(); @@ -797,6 +801,7 @@ public HttpResponse createEmployeeEarningsTemplateForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -923,6 +928,7 @@ public HttpResponse createEmployeeLeaveForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1051,6 +1057,7 @@ public HttpResponse createEmployeeLeaveTypeForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1181,6 +1188,7 @@ public HttpResponse createEmployeeOpeningBalancesForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1307,6 +1315,7 @@ public HttpResponse createEmployeePaymentMethodForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1433,6 +1442,7 @@ public HttpResponse createEmployeeSalaryAndWageForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1555,6 +1565,7 @@ public HttpResponse createEmployeeStatutorySickLeaveForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/StatutoryLeaves/Sick"); String url = uriBuilder.build().toString(); @@ -1674,6 +1685,7 @@ public HttpResponse createEmploymentForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1783,6 +1795,7 @@ public HttpResponse createLeaveTypeForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/LeaveTypes"); String url = uriBuilder.build().toString(); @@ -1907,6 +1920,7 @@ public HttpResponse createMultipleEmployeeEarningsTemplateForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -2018,6 +2032,7 @@ public HttpResponse createPayRunCalendarForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/PayRunCalendars"); String url = uriBuilder.build().toString(); @@ -2124,6 +2139,7 @@ public HttpResponse createReimbursementForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Reimbursements"); String url = uriBuilder.build().toString(); @@ -2228,6 +2244,7 @@ public HttpResponse createTimesheetForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Timesheets"); String url = uriBuilder.build().toString(); @@ -2348,6 +2365,7 @@ public HttpResponse createTimesheetLineForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7273,6 +7291,7 @@ public HttpResponse updateEmployeeForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7417,6 +7436,7 @@ public HttpResponse updateEmployeeEarningsTemplateForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7553,6 +7573,7 @@ public HttpResponse updateEmployeeLeaveForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7684,6 +7705,7 @@ public HttpResponse updateEmployeeOpeningBalancesForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7824,6 +7846,7 @@ public HttpResponse updateEmployeeSalaryAndWageForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -7940,6 +7963,7 @@ public HttpResponse updatePayRunForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -8077,6 +8101,7 @@ public HttpResponse updateTimesheetLineForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); diff --git a/src/main/java/com/xero/api/client/ProjectApi.java b/src/main/java/com/xero/api/client/ProjectApi.java index 708ad9be..9d8ea02f 100644 --- a/src/main/java/com/xero/api/client/ProjectApi.java +++ b/src/main/java/com/xero/api/client/ProjectApi.java @@ -204,6 +204,7 @@ public HttpResponse createProjectForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); UriBuilder uriBuilder = UriBuilder.fromUri(apiClient.getBasePath() + "/Projects"); String url = uriBuilder.build().toString(); @@ -316,6 +317,7 @@ public HttpResponse createTaskForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -435,6 +437,7 @@ public HttpResponse createTimeEntryForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -1960,6 +1963,7 @@ public HttpResponse patchProjectForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -2073,6 +2077,7 @@ public HttpResponse updateProjectForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -2194,6 +2199,7 @@ public HttpResponse updateTaskForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); @@ -2322,6 +2328,7 @@ public HttpResponse updateTimeEntryForHttpResponse( headers.set("Xero-Tenant-Id", xeroTenantId); headers.set("Idempotency-Key", idempotencyKey); headers.setAccept("application/json"); + headers.setContentType("application/json"); headers.setUserAgent(this.getUserAgent()); // create a map of path variables final Map uriVariables = new HashMap(); diff --git a/src/main/java/com/xero/models/payrollnz/Employee.java b/src/main/java/com/xero/models/payrollnz/Employee.java index 50d4c3cc..551bd7aa 100644 --- a/src/main/java/com/xero/models/payrollnz/Employee.java +++ b/src/main/java/com/xero/models/payrollnz/Employee.java @@ -212,7 +212,7 @@ public Employee firstName(String firstName) { * * @return firstName */ - @ApiModelProperty(example = "Karen", value = "First name of employee") + @ApiModelProperty(example = "Karen", required = true, value = "First name of employee") /** * First name of employee * @@ -247,7 +247,7 @@ public Employee lastName(String lastName) { * * @return lastName */ - @ApiModelProperty(example = "Jones", value = "Last name of employee") + @ApiModelProperty(example = "Jones", required = true, value = "Last name of employee") /** * Last name of employee * @@ -284,6 +284,7 @@ public Employee dateOfBirth(LocalDate dateOfBirth) { */ @ApiModelProperty( example = "Wed Jan 02 00:00:00 UTC 2019", + required = true, value = "Date of birth of the employee (YYYY-MM-DD)") /** * Date of birth of the employee (YYYY-MM-DD) @@ -319,7 +320,7 @@ public Employee address(Address address) { * * @return address */ - @ApiModelProperty(value = "") + @ApiModelProperty(required = true, value = "") /** * address * diff --git a/src/main/java/com/xero/models/payrollnz/Employment.java b/src/main/java/com/xero/models/payrollnz/Employment.java index 073a135a..60f641ac 100644 --- a/src/main/java/com/xero/models/payrollnz/Employment.java +++ b/src/main/java/com/xero/models/payrollnz/Employment.java @@ -52,7 +52,9 @@ public Employment payrollCalendarID(UUID payrollCalendarID) { * * @return payrollCalendarID */ - @ApiModelProperty(value = "Xero unique identifier for the payroll calendar of the employee") + @ApiModelProperty( + required = true, + value = "Xero unique identifier for the payroll calendar of the employee") /** * Xero unique identifier for the payroll calendar of the employee * @@ -125,7 +127,7 @@ public Employment startDate(LocalDate startDate) { * * @return startDate */ - @ApiModelProperty(value = "Start date of the employment (YYYY-MM-DD)") + @ApiModelProperty(required = true, value = "Start date of the employment (YYYY-MM-DD)") /** * Start date of the employment (YYYY-MM-DD) * @@ -160,7 +162,10 @@ public Employment engagementType(String engagementType) { * * @return engagementType */ - @ApiModelProperty(example = "Permanent", value = "Engagement type of the employee") + @ApiModelProperty( + example = "Permanent", + required = true, + value = "Engagement type of the employee") /** * Engagement type of the employee * diff --git a/src/main/java/com/xero/models/payrolluk/Employee.java b/src/main/java/com/xero/models/payrolluk/Employee.java index 392b266e..7a419905 100644 --- a/src/main/java/com/xero/models/payrolluk/Employee.java +++ b/src/main/java/com/xero/models/payrolluk/Employee.java @@ -174,7 +174,7 @@ public Employee title(String title) { * * @return title */ - @ApiModelProperty(example = "Mrs", value = "Title of the employee") + @ApiModelProperty(example = "Mrs", required = true, value = "Title of the employee") /** * Title of the employee * @@ -209,7 +209,7 @@ public Employee firstName(String firstName) { * * @return firstName */ - @ApiModelProperty(example = "Karen", value = "First name of employee") + @ApiModelProperty(example = "Karen", required = true, value = "First name of employee") /** * First name of employee * @@ -244,7 +244,7 @@ public Employee lastName(String lastName) { * * @return lastName */ - @ApiModelProperty(example = "Jones", value = "Last name of employee") + @ApiModelProperty(example = "Jones", required = true, value = "Last name of employee") /** * Last name of employee * @@ -281,6 +281,7 @@ public Employee dateOfBirth(LocalDate dateOfBirth) { */ @ApiModelProperty( example = "Wed Jan 02 00:00:00 UTC 2019", + required = true, value = "Date of birth of the employee (YYYY-MM-DD)") /** * Date of birth of the employee (YYYY-MM-DD) @@ -316,7 +317,7 @@ public Employee address(Address address) { * * @return address */ - @ApiModelProperty(value = "") + @ApiModelProperty(required = true, value = "") /** * address * @@ -386,7 +387,7 @@ public Employee gender(GenderEnum gender) { * * @return gender */ - @ApiModelProperty(example = "F", value = "The employee’s gender") + @ApiModelProperty(example = "F", required = true, value = "The employee’s gender") /** * The employee’s gender * diff --git a/src/main/java/com/xero/models/payrolluk/Employment.java b/src/main/java/com/xero/models/payrolluk/Employment.java index a4861f9b..d96155af 100644 --- a/src/main/java/com/xero/models/payrolluk/Employment.java +++ b/src/main/java/com/xero/models/payrolluk/Employment.java @@ -133,7 +133,9 @@ public Employment payrollCalendarID(UUID payrollCalendarID) { * * @return payrollCalendarID */ - @ApiModelProperty(value = "Xero unique identifier for the payroll calendar of the employee") + @ApiModelProperty( + required = true, + value = "Xero unique identifier for the payroll calendar of the employee") /** * Xero unique identifier for the payroll calendar of the employee * @@ -168,7 +170,7 @@ public Employment startDate(LocalDate startDate) { * * @return startDate */ - @ApiModelProperty(value = "Start date of the employment (YYYY-MM-DD)") + @ApiModelProperty(required = true, value = "Start date of the employment (YYYY-MM-DD)") /** * Start date of the employment (YYYY-MM-DD) * @@ -203,7 +205,7 @@ public Employment employeeNumber(String employeeNumber) { * * @return employeeNumber */ - @ApiModelProperty(example = "7", value = "The employment number of the employee") + @ApiModelProperty(example = "7", required = true, value = "The employment number of the employee") /** * The employment number of the employee * @@ -238,7 +240,7 @@ public Employment niCategory(NiCategoryEnum niCategory) { * * @return niCategory */ - @ApiModelProperty(example = "A", value = "The NI Category of the employee") + @ApiModelProperty(example = "A", required = true, value = "The NI Category of the employee") /** * The NI Category of the employee * diff --git a/src/test/java/com/xero/api/client/AccountingApiAccountsTest.java b/src/test/java/com/xero/api/client/AccountingApiAccountsTest.java index 52a3b079..8d738d88 100644 --- a/src/test/java/com/xero/api/client/AccountingApiAccountsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiAccountsTest.java @@ -1,45 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - -import org.junit.After; import org.junit.Before; import org.junit.Test; -import org.junit.*; - import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - public class AccountingApiAccountsTest { ApiClient defaultClient; @@ -56,11 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); - - accountingApi = AccountingApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); + accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { @@ -156,13 +125,13 @@ public void testGetAccountAttachments() throws Exception { public void testCreateAccountAttachmentByFileName() throws Exception { System.out.println("@Test - createAccountAttachmentByFileName"); - UUID accountID = UUID.fromString("297c2dc5-cc47-4afd-8ec8-74990b8761e9"); - + UUID accountID = UUID.fromString("297c2dc5-cc47-4afd-8ec8-74990b8761e9"); + ClassLoader classLoader = getClass().getClassLoader(); File bytes = new File(classLoader.getResource("helo-heros.jpg").getFile()); String newFileName = "sample5.jpg"; - Attachments createAccountsAttachments = accountingApi.createAccountAttachmentByFileName(accessToken,xeroTenantId,accountID, newFileName, bytes, null); + Attachments createAccountsAttachments = accountingApi.createAccountAttachmentByFileName(accessToken,xeroTenantId,accountID, newFileName, bytes, null); assertThat(createAccountsAttachments.getAttachments().get(0).getAttachmentID().toString(), is(equalTo("ab95b276-9dce-4925-9077-439818ba270f"))); assertThat(createAccountsAttachments.getAttachments().get(0).getFileName().toString(), is(equalTo("sample5.jpg"))); diff --git a/src/test/java/com/xero/api/client/AccountingApiBankTransactionTest.java b/src/test/java/com/xero/api/client/AccountingApiBankTransactionTest.java index 22006ab4..77973850 100644 --- a/src/test/java/com/xero/api/client/AccountingApiBankTransactionTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiBankTransactionTest.java @@ -1,42 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiBankTransactionTest { @@ -53,11 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); - - accountingApi = AccountingApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); + accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { @@ -159,7 +131,6 @@ public void createBankTransactionAttachmentByFileNameTest() throws IOException { ClassLoader classLoader = getClass().getClassLoader(); File bytes = new File(classLoader.getResource("helo-heros.jpg").getFile()); String fileName = "sample5.jpg"; - Attachments response = accountingApi.createBankTransactionAttachmentByFileName(accessToken,xeroTenantId,bankTransactionID, fileName, bytes, null); assertThat(response.getAttachments().get(0).getAttachmentID(), is(equalTo(UUID.fromString("4508a692-e52c-4ad8-a138-2f13e22bf57b")))); assertThat(response.getAttachments().get(0).getFileName().toString(), is(equalTo("sample5.jpg"))); diff --git a/src/test/java/com/xero/api/client/AccountingApiBankTransferTest.java b/src/test/java/com/xero/api/client/AccountingApiBankTransferTest.java index b36ffb21..9fcc0b2e 100644 --- a/src/test/java/com/xero/api/client/AccountingApiBankTransferTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiBankTransferTest.java @@ -1,43 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiBankTransferTest { @@ -56,10 +30,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); - - accountingApi = AccountingApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); + accountingApi = AccountingApi.getInstance(defaultClient); ClassLoader classLoader = getClass().getClassLoader(); bytes = new File(classLoader.getResource("helo-heros.jpg").getFile()); diff --git a/src/test/java/com/xero/api/client/AccountingApiBatchPaymentTest.java b/src/test/java/com/xero/api/client/AccountingApiBatchPaymentTest.java index 4d574b2d..34635d36 100644 --- a/src/test/java/com/xero/api/client/AccountingApiBatchPaymentTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiBatchPaymentTest.java @@ -1,40 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; public class AccountingApiBatchPaymentTest { @@ -53,11 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); - - accountingApi = AccountingApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); + accountingApi = AccountingApi.getInstance(defaultClient); ClassLoader classLoader = getClass().getClassLoader(); bytes = new File(classLoader.getResource("helo-heros.jpg").getFile()); diff --git a/src/test/java/com/xero/api/client/AccountingApiBrandingThemeTest.java b/src/test/java/com/xero/api/client/AccountingApiBrandingThemeTest.java index 2119a969..02a3d9b8 100644 --- a/src/test/java/com/xero/api/client/AccountingApiBrandingThemeTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiBrandingThemeTest.java @@ -1,40 +1,13 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; public class AccountingApiBrandingThemeTest { @@ -52,12 +25,9 @@ public void setUp() { // Set Access Token and Tenant Id accessToken = "123"; xeroTenantId = "xyz"; - - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); - - accountingApi = AccountingApi.getInstance(defaultClient); + + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); + accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { diff --git a/src/test/java/com/xero/api/client/AccountingApiContactGroupTest.java b/src/test/java/com/xero/api/client/AccountingApiContactGroupTest.java index 218ed4eb..95126546 100644 --- a/src/test/java/com/xero/api/client/AccountingApiContactGroupTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiContactGroupTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiContactGroupTest { @@ -56,11 +27,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); - - accountingApi = AccountingApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); + accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { diff --git a/src/test/java/com/xero/api/client/AccountingApiContactsTest.java b/src/test/java/com/xero/api/client/AccountingApiContactsTest.java index da18515c..8a5e7dfb 100644 --- a/src/test/java/com/xero/api/client/AccountingApiContactsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiContactsTest.java @@ -1,42 +1,19 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; import java.util.List; import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiContactsTest { @@ -55,11 +32,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); - - accountingApi = AccountingApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); + accountingApi = AccountingApi.getInstance(defaultClient); ClassLoader classLoader = getClass().getClassLoader(); body = new File(classLoader.getResource("helo-heros.jpg").getFile()); diff --git a/src/test/java/com/xero/api/client/AccountingApiCreditNotesTest.java b/src/test/java/com/xero/api/client/AccountingApiCreditNotesTest.java index b70e1ba8..a157a377 100644 --- a/src/test/java/com/xero/api/client/AccountingApiCreditNotesTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiCreditNotesTest.java @@ -1,42 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiCreditNotesTest { @@ -55,9 +30,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); - accountingApi = AccountingApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); + accountingApi = AccountingApi.getInstance(defaultClient); ClassLoader classLoader = getClass().getClassLoader(); body = new File(classLoader.getResource("helo-heros.jpg").getFile()); diff --git a/src/test/java/com/xero/api/client/AccountingApiEmployeesTest.java b/src/test/java/com/xero/api/client/AccountingApiEmployeesTest.java index b9b9feff..9d3ddff3 100644 --- a/src/test/java/com/xero/api/client/AccountingApiEmployeesTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiEmployeesTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiEmployeesTest { @@ -56,9 +28,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs diff --git a/src/test/java/com/xero/api/client/AccountingApiExpenseClaimsTest.java b/src/test/java/com/xero/api/client/AccountingApiExpenseClaimsTest.java index 49fc446f..dbe23f64 100644 --- a/src/test/java/com/xero/api/client/AccountingApiExpenseClaimsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiExpenseClaimsTest.java @@ -1,43 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiExpenseClaimsTest { @@ -56,9 +30,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); ClassLoader classLoader = getClass().getClassLoader(); diff --git a/src/test/java/com/xero/api/client/AccountingApiInvoicesTest.java b/src/test/java/com/xero/api/client/AccountingApiInvoicesTest.java index 0ec2420d..585445b3 100644 --- a/src/test/java/com/xero/api/client/AccountingApiInvoicesTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiInvoicesTest.java @@ -1,42 +1,19 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; import java.util.List; import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiInvoicesTest { @@ -54,9 +31,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); ClassLoader classLoader = getClass().getClassLoader(); diff --git a/src/test/java/com/xero/api/client/AccountingApiItemsTest.java b/src/test/java/com/xero/api/client/AccountingApiItemsTest.java index bf90e61c..284cb0ef 100644 --- a/src/test/java/com/xero/api/client/AccountingApiItemsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiItemsTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiItemsTest { @@ -56,9 +28,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs @@ -95,7 +65,7 @@ public void createItemTest() throws IOException { assertThat(response.getItems().get(0).getIsTrackedAsInventory(), is(equalTo(false))); assertThat(response.getItems().get(0).getUpdatedDateUTCAsDate(), is(equalTo(OffsetDateTime.parse("2019-03-11T19:17:51.707Z")))); assertThat(response.getItems().get(0).getItemID(), is(equalTo(UUID.fromString("a4544d51-48f6-441f-a623-99ecbced6ab7")))); - assertThat(response.getItems().get(0).getValidationErrors().get(0).getMessage(), is(equalTo("Price List Item with Code 'abc' already exists"))); + assertThat(response.getItems().get(0).getValidationErrors().get(0).getMessage(), is(equalTo("Price List Item with Code ''abc'' already exists"))); //System.out.println(response.getItems().get(0).toString()); } diff --git a/src/test/java/com/xero/api/client/AccountingApiJournalsTest.java b/src/test/java/com/xero/api/client/AccountingApiJournalsTest.java index 678651f1..1f5583f3 100644 --- a/src/test/java/com/xero/api/client/AccountingApiJournalsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiJournalsTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiJournalsTest { @@ -55,9 +27,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs @@ -84,7 +54,7 @@ public void tearDown() { public void getJournalTest() throws IOException { System.out.println("@Test - getJournal"); UUID journalID = UUID.fromString("8138a266-fb42-49b2-a104-014b7045753d"); - Journals response = accountingApi.getJournal(accessToken,xeroTenantId,journalID); + Journals response = accountingApi.getJournalByNumber(accessToken,xeroTenantId,1); assertThat(response.getJournals().get(0).getJournalID(), is(equalTo(UUID.fromString("1b31feeb-aa23-404c-8c19-24c827c53661")))); assertThat(response.getJournals().get(0).getJournalDateAsDate(), is(equalTo(LocalDate.of(2018,10,20)))); diff --git a/src/test/java/com/xero/api/client/AccountingApiLinkedTransactionsTest.java b/src/test/java/com/xero/api/client/AccountingApiLinkedTransactionsTest.java index 4e412d57..d58e040c 100644 --- a/src/test/java/com/xero/api/client/AccountingApiLinkedTransactionsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiLinkedTransactionsTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiLinkedTransactionsTest { @@ -56,9 +28,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs diff --git a/src/test/java/com/xero/api/client/AccountingApiManualJournalsTest.java b/src/test/java/com/xero/api/client/AccountingApiManualJournalsTest.java index 70a7fc8f..2380c89c 100644 --- a/src/test/java/com/xero/api/client/AccountingApiManualJournalsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiManualJournalsTest.java @@ -1,42 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiManualJournalsTest { @@ -55,9 +30,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); ClassLoader classLoader = getClass().getClassLoader(); @@ -112,7 +85,7 @@ public void createManualJournalsTest() throws IOException { assertThat(response.getManualJournals().get(0).getShowOnCashBasisReports(), is(equalTo(true))); assertThat(response.getManualJournals().get(0).getUpdatedDateUTCAsDate(), is(equalTo(OffsetDateTime.parse("2019-03-14T20:39:32.920Z")))); assertThat(response.getManualJournals().get(0).getManualJournalID(), is(equalTo(UUID.fromString("d312dd5e-a53e-46d1-9d51-c569ef4570b7")))); - assertThat(response.getManualJournals().get(0).getWarnings().get(0).getMessage(), is(equalTo("Account code '476' has been removed as it does not match a recognised account."))); + assertThat(response.getManualJournals().get(0).getWarnings().get(0).getMessage(), is(equalTo("Account code ''476'' has been removed as it does not match a recognised account."))); assertThat(response.getManualJournals().get(0).getValidationErrors().get(0).getMessage(), is(equalTo("The total debits (100.00) must equal total credits (-10.00)"))); //System.out.println(response.getManualJournals().get(0).toString()); } @@ -140,11 +113,11 @@ public void getManualJournalTest() throws IOException { UUID manualJournalID = UUID.fromString("8138a266-fb42-49b2-a104-014b7045753d"); ManualJournals response = accountingApi.getManualJournal(accessToken,xeroTenantId,manualJournalID); - assertThat(response.getManualJournals().get(0).getNarration(), is(equalTo("These aren't the droids you are looking for"))); + assertThat(response.getManualJournals().get(0).getNarration(), is(equalTo("These aren''t the droids you are looking for"))); assertThat(response.getManualJournals().get(0).getJournalLines().get(0).getLineAmount(), is(equalTo(100.0))); assertThat(response.getManualJournals().get(0).getJournalLines().get(0).getLineAmount().toString(), is(equalTo("100.0"))); assertThat(response.getManualJournals().get(0).getJournalLines().get(0).getAccountCode(), is(equalTo("429"))); - assertThat(response.getManualJournals().get(0).getJournalLines().get(0).getDescription(), is(equalTo("These aren't the droids you are looking for"))); + assertThat(response.getManualJournals().get(0).getNarration(), is(equalTo("These aren''t the droids you are looking for"))); assertThat(response.getManualJournals().get(0).getJournalLines().get(0).getTaxType(), is(equalTo("NONE"))); assertThat(response.getManualJournals().get(0).getJournalLines().get(0).getIsBlank(), is(equalTo(false))); assertThat(response.getManualJournals().get(0).getJournalLines().get(1).getLineAmount(), is(equalTo(-100.0))); @@ -193,7 +166,7 @@ public void getManualJournalsTest() throws IOException { Integer pageSize = null; ManualJournals response = accountingApi.getManualJournals(accessToken,xeroTenantId,ifModifiedSince, where, order, page, pageSize); - assertThat(response.getManualJournals().get(0).getNarration(), is(equalTo("Reversal: These aren't the droids you are looking for"))); + assertThat(response.getManualJournals().get(0).getNarration(), is(equalTo("Reversal: These aren''t the droids you are looking for"))); assertThat(response.getManualJournals().get(0).getDateAsDate(), is(equalTo(LocalDate.of(2019,03,21)))); assertThat(response.getManualJournals().get(0).getLineAmountTypes(), is(equalTo(com.xero.models.accounting.LineAmountTypes.NOTAX))); assertThat(response.getManualJournals().get(0).getStatus(), is(equalTo(com.xero.models.accounting.ManualJournal.StatusEnum.POSTED))); diff --git a/src/test/java/com/xero/api/client/AccountingApiOrganisationsTest.java b/src/test/java/com/xero/api/client/AccountingApiOrganisationsTest.java index 3d25d954..a2e945da 100644 --- a/src/test/java/com/xero/api/client/AccountingApiOrganisationsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiOrganisationsTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiOrganisationsTest { @@ -56,9 +28,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs diff --git a/src/test/java/com/xero/api/client/AccountingApiOverpaymentsTest.java b/src/test/java/com/xero/api/client/AccountingApiOverpaymentsTest.java index 962d993c..c1cd3ae9 100644 --- a/src/test/java/com/xero/api/client/AccountingApiOverpaymentsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiOverpaymentsTest.java @@ -1,42 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiOverpaymentsTest { @@ -55,9 +30,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); ClassLoader classLoader = getClass().getClassLoader(); diff --git a/src/test/java/com/xero/api/client/AccountingApiPaymentServicesTest.java b/src/test/java/com/xero/api/client/AccountingApiPaymentServicesTest.java index 4f5383cb..6e05a70b 100644 --- a/src/test/java/com/xero/api/client/AccountingApiPaymentServicesTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiPaymentServicesTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiPaymentServicesTest { @@ -54,11 +25,9 @@ public class AccountingApiPaymentServicesTest { public void setUp() { // Set Access Token and Tenant Id accessToken = "123"; - xeroTenantId = "xyz"; - - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + xeroTenantId = "xyz"; + + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs diff --git a/src/test/java/com/xero/api/client/AccountingApiPaymentsTest.java b/src/test/java/com/xero/api/client/AccountingApiPaymentsTest.java index 1569d284..6879d7ae 100644 --- a/src/test/java/com/xero/api/client/AccountingApiPaymentsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiPaymentsTest.java @@ -1,42 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiPaymentsTest { @@ -51,9 +25,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); } diff --git a/src/test/java/com/xero/api/client/AccountingApiPrepaymentsTest.java b/src/test/java/com/xero/api/client/AccountingApiPrepaymentsTest.java index 9f664c91..2b5fe2d1 100644 --- a/src/test/java/com/xero/api/client/AccountingApiPrepaymentsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiPrepaymentsTest.java @@ -1,42 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiPrepaymentsTest { @@ -54,9 +28,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs diff --git a/src/test/java/com/xero/api/client/AccountingApiPurchaseOrdersTest.java b/src/test/java/com/xero/api/client/AccountingApiPurchaseOrdersTest.java index d6fdc271..29dd5984 100644 --- a/src/test/java/com/xero/api/client/AccountingApiPurchaseOrdersTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiPurchaseOrdersTest.java @@ -1,42 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiPurchaseOrdersTest { @@ -51,11 +25,9 @@ public class AccountingApiPurchaseOrdersTest { public void setUp() { // Set Access Token and Tenant Id accessToken = "123"; - xeroTenantId = "xyz"; - - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + xeroTenantId = "xyz"; + + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs diff --git a/src/test/java/com/xero/api/client/AccountingApiQuotesTest.java b/src/test/java/com/xero/api/client/AccountingApiQuotesTest.java index aea93347..886623bd 100644 --- a/src/test/java/com/xero/api/client/AccountingApiQuotesTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiQuotesTest.java @@ -1,45 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - -import org.junit.After; import org.junit.Before; import org.junit.Test; -import org.junit.*; - import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - public class AccountingApiQuotesTest { ApiClient defaultClient; @@ -56,11 +27,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); - - accountingApi = AccountingApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); + accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { diff --git a/src/test/java/com/xero/api/client/AccountingApiReceiptsTest.java b/src/test/java/com/xero/api/client/AccountingApiReceiptsTest.java index ac2c7008..04b2728d 100644 --- a/src/test/java/com/xero/api/client/AccountingApiReceiptsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiReceiptsTest.java @@ -1,44 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiReceiptsTest { @@ -56,9 +29,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); ClassLoader classLoader = getClass().getClassLoader(); diff --git a/src/test/java/com/xero/api/client/AccountingApiRepeatingInvoicesTest.java b/src/test/java/com/xero/api/client/AccountingApiRepeatingInvoicesTest.java index 6fa289a6..11a9c0ee 100644 --- a/src/test/java/com/xero/api/client/AccountingApiRepeatingInvoicesTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiRepeatingInvoicesTest.java @@ -1,44 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiRepeatingInvoicesTest { @@ -56,9 +29,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); ClassLoader classLoader = getClass().getClassLoader(); diff --git a/src/test/java/com/xero/api/client/AccountingApiReportsTest.java b/src/test/java/com/xero/api/client/AccountingApiReportsTest.java index 43a5a33f..727254db 100644 --- a/src/test/java/com/xero/api/client/AccountingApiReportsTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiReportsTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiReportsTest { @@ -55,8 +27,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs @@ -254,9 +225,9 @@ public void getReportTenNinetyNineTest() throws IOException { Reports response = accountingApi.getReportTenNinetyNine(accessToken,xeroTenantId,reportYear); - assertThat(response.getReports().get(0).getReportName(), is(equalTo("1099 report"))); - assertThat(response.getReports().get(0).getReportDate(), is(equalTo("1 Jan 2016 to 31 Dec 2016"))); - assertThat(response.getReports().get(0).getContacts().get(0).getBox3(), is(equalTo(1000.00))); + assertThat(response.getReports().get(0).getReportName(), is(equalTo("1099-NEC report"))); + assertThat(response.getReports().get(0).getReportDate(), is(equalTo("1 Jan 2023 to 31 Dec 2023"))); + assertThat(response.getReports().get(0).getContacts().get(0).getBox4(), is(equalTo(1150.00))); assertThat(response.getReports().get(0).getContacts().get(0).getName(), is(equalTo("Bank West"))); assertThat(response.getReports().get(0).getContacts().get(0).getFederalTaxIDType(), is(equalTo("SSN"))); assertThat(response.getReports().get(0).getContacts().get(0).getCity(), is(equalTo("Pinehaven"))); @@ -265,7 +236,7 @@ public void getReportTenNinetyNineTest() throws IOException { assertThat(response.getReports().get(0).getContacts().get(0).getEmail(), is(equalTo("jack@bowest.com"))); assertThat(response.getReports().get(0).getContacts().get(0).getTaxID(), is(equalTo("234-22-2223"))); assertThat(response.getReports().get(0).getContacts().get(0).getContactId(), is(equalTo(UUID.fromString("81d5706a-8057-4338-8511-747cd85f4c68")))); - assertThat(response.getReports().get(0).getContacts().get(2).getBox1(), is(equalTo(5543.75))); + assertThat(response.getReports().get(0).getContacts().get(0).getBox1(), is(equalTo(0.00))); //System.out.println(response.getReports().toString()); } diff --git a/src/test/java/com/xero/api/client/AccountingApiTaxRatesTest.java b/src/test/java/com/xero/api/client/AccountingApiTaxRatesTest.java index a9c749e1..f3cbb59c 100644 --- a/src/test/java/com/xero/api/client/AccountingApiTaxRatesTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiTaxRatesTest.java @@ -1,45 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; import java.io.IOException; -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; - public class AccountingApiTaxRatesTest { ApiClient defaultClient; @@ -54,10 +24,8 @@ public void setUp() { // Set Access Token and Tenant Id accessToken = "123"; xeroTenantId = "xyz"; - - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs diff --git a/src/test/java/com/xero/api/client/AccountingApiTrackingCategoriesTest.java b/src/test/java/com/xero/api/client/AccountingApiTrackingCategoriesTest.java index 030cbf12..7ae2823c 100644 --- a/src/test/java/com/xero/api/client/AccountingApiTrackingCategoriesTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiTrackingCategoriesTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiTrackingCategoriesTest { @@ -55,9 +26,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs diff --git a/src/test/java/com/xero/api/client/AccountingApiUsersTest.java b/src/test/java/com/xero/api/client/AccountingApiUsersTest.java index c7376701..9cf9d6d4 100644 --- a/src/test/java/com/xero/api/client/AccountingApiUsersTest.java +++ b/src/test/java/com/xero/api/client/AccountingApiUsersTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.accounting.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class AccountingApiUsersTest { @@ -55,9 +27,7 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://25faf04a-c71e-40e7-b7ce-f1fae0149465.mock.pstmn.io/api.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("accounting.api.url"),null,null,null,null); accountingApi = AccountingApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs diff --git a/src/test/java/com/xero/api/client/AppStoreApiTest.java b/src/test/java/com/xero/api/client/AppStoreApiTest.java index b0dfd445..3930a772 100644 --- a/src/test/java/com/xero/api/client/AppStoreApiTest.java +++ b/src/test/java/com/xero/api/client/AppStoreApiTest.java @@ -1,45 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - -import org.junit.After; import org.junit.Before; import org.junit.Test; -import org.junit.*; - import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; import com.xero.api.XeroApiException; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.appstore.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; - -import org.apache.commons.io.IOUtils; - public class AppStoreApiTest { ApiClient defaultClient; @@ -54,9 +25,9 @@ public void setUp() { // Set Access Token and Tenant Id accessToken = "123"; xeroTenantId = "xyz"; - - defaultClient = new ApiClient("https://ec5d3540-e90b-47b9-9a5d-95180950a89b.mock.pstmn.io/appstore/2.0",null,null,null,null); - appStoreApi = AppStoreApi.getInstance(defaultClient); + + defaultClient = new ApiClient(ConfigurationLoader.getProperty("appstore.api.url"),null,null,null,null); + appStoreApi = AppStoreApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { diff --git a/src/test/java/com/xero/api/client/AssetsApiTest.java b/src/test/java/com/xero/api/client/AssetsApiTest.java index a997b20f..b0c6efb4 100644 --- a/src/test/java/com/xero/api/client/AssetsApiTest.java +++ b/src/test/java/com/xero/api/client/AssetsApiTest.java @@ -1,45 +1,19 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - -import org.junit.After; import org.junit.Before; import org.junit.Test; -import org.junit.*; - import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; import com.xero.api.XeroApiException; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.assets.*; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; +import com.xero.models.assets.BookDepreciationSetting.DepreciationMethodEnum; import org.threeten.bp.*; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; - import java.util.List; -import org.apache.commons.io.IOUtils; - public class AssetsApiTest { ApiClient defaultClient; @@ -56,9 +30,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init clienthttps://3e140044-4914-47dd-b4e1-df0cc040a44f.mock.pstmn.io/bankfeeds.xro/1.0 - defaultClient = new ApiClient("https://0a44a319-84a5-4918-91ce-338acd97a84d.mock.pstmn.io/assets.xro/1.0",null,null,null,null); - assetApi = AssetApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("assets.api.url"),null,null,null,null); + assetApi = AssetApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { @@ -86,6 +59,7 @@ public void testCreateAsset() throws Exception { System.out.println("@Test - createAsset"); Asset newAsset = new Asset(); + newAsset.setAssetName("Computer7486"); try { Asset response = assetApi.createAsset(accessToken,xeroTenantId,newAsset,null); assertThat(response.getAssetId().toString(), (equalTo("2257c64a-77ca-444c-a5ea-fa9a588c7039"))); @@ -200,6 +174,12 @@ public void testCreateAssetType() throws Exception { System.out.println("@Test - createAssetType"); AssetType newAssetType = new AssetType(); + newAssetType.setAssetTypeName("Machinery11004"); + newAssetType.setFixedAssetAccountId(UUID.fromString("3d8d063a-c148-4bb8-8b3c-a5e2ad3b1e82")); + newAssetType.setDepreciationExpenseAccountId(UUID.fromString("d1602f69-f900-4616-8d34-90af393fa368")); + BookDepreciationSetting bookDepreciationSetting = new BookDepreciationSetting(); + bookDepreciationSetting.setDepreciationMethod(DepreciationMethodEnum.DIMINISHINGVALUE100); + newAssetType.setBookDepreciationSetting(bookDepreciationSetting); try { AssetType response = assetApi.createAssetType(accessToken,xeroTenantId,newAssetType,null); diff --git a/src/test/java/com/xero/api/client/BankfeedApiFeedConnectionTest.java b/src/test/java/com/xero/api/client/BankfeedApiFeedConnectionTest.java index 3a1033f2..89588477 100644 --- a/src/test/java/com/xero/api/client/BankfeedApiFeedConnectionTest.java +++ b/src/test/java/com/xero/api/client/BankfeedApiFeedConnectionTest.java @@ -7,6 +7,7 @@ import java.util.UUID; import com.xero.api.ApiClient; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.bankfeeds.FeedConnection; import com.xero.models.bankfeeds.FeedConnections; @@ -28,11 +29,9 @@ public void setUp() { // Set Access Token and Tenant Id accessToken = "123"; xeroTenantId = "xyz"; - - // Init AccountingApi client - //defaultClient = new ApiClient("https://virtserver.swaggerhub.com/Xero/bankfeeds/1.0.0",null,null,null,null); - defaultClient = new ApiClient("https://3e140044-4914-47dd-b4e1-df0cc040a44f.mock.pstmn.io/bankfeeds.xro/1.0",null,null,null,null); - bankfeedsApi = BankFeedsApi.getInstance(defaultClient); + + defaultClient = new ApiClient(ConfigurationLoader.getProperty("bankfeeds.api.url"),null,null,null,null); + bankfeedsApi = BankFeedsApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { diff --git a/src/test/java/com/xero/api/client/BankfeedApiStatementTest.java b/src/test/java/com/xero/api/client/BankfeedApiStatementTest.java index afcb542d..03bf63bf 100644 --- a/src/test/java/com/xero/api/client/BankfeedApiStatementTest.java +++ b/src/test/java/com/xero/api/client/BankfeedApiStatementTest.java @@ -1,44 +1,14 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - -import org.junit.After; import org.junit.Before; import org.junit.Test; -import org.junit.*; - import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.bankfeeds.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; public class BankfeedApiStatementTest { @@ -56,10 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init AccountingApi client - //defaultClient = new ApiClient("https://virtserver.swaggerhub.com/Xero/bankfeeds/1.0.0",null,null,null,null); - defaultClient = new ApiClient("https://3e140044-4914-47dd-b4e1-df0cc040a44f.mock.pstmn.io/bankfeeds.xro/1.0",null,null,null,null); - bankfeedsApi = BankFeedsApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("bankfeeds.api.url"),null,null,null,null); + bankfeedsApi = BankFeedsApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { diff --git a/src/test/java/com/xero/api/client/FinanceApiTest.java b/src/test/java/com/xero/api/client/FinanceApiTest.java index e00468ff..04ccaa6d 100644 --- a/src/test/java/com/xero/api/client/FinanceApiTest.java +++ b/src/test/java/com/xero/api/client/FinanceApiTest.java @@ -1,44 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - -import org.junit.After; import org.junit.Before; import org.junit.Test; -import org.junit.*; - import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; import com.xero.api.XeroApiException; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.finance.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; - import java.util.*; - -import org.apache.commons.io.IOUtils; +import java.io.IOException; +import java.io.InputStream; public class FinanceApiTest { @@ -54,9 +27,8 @@ public void setUp() { // Set Access Token and Tenant Id accessToken = "123"; xeroTenantId = "xyz"; - - defaultClient = new ApiClient("https://73cb2c15-a3e8-4230-86d6-8af203c03b5f.mock.pstmn.io/finance.xro/1.0",null,null,null,null); - financeApi = FinanceApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("finance.api.url"),null,null,null,null); + financeApi = FinanceApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { @@ -116,7 +88,7 @@ public void testGetAccountingActivityLockHistory() throws Exception { try { LockHistoryResponse response = financeApi.getAccountingActivityLockHistory(accessToken, "73151de8-3676-4887-a021-edec960dd537", null); assertThat(response.getOrganisationId().toString(), (equalTo("73151de8-3676-4887-a021-edec960dd537"))); - assertThat(response.getLockDates().get(1).getUpdatedDateUtc().toString(), (equalTo("2019-01-20T10:50:03Z"))); + assertThat(response.getLockDates().get(1).getUpdatedDateUtc().toString(), (equalTo("2019-01-21T10:59:33Z"))); } catch (XeroApiException xe) { System.out.println(xe.toString()); @@ -212,7 +184,6 @@ public void testGetFinancialStatementContactsRevenue() throws Exception { System.out.println("@Test - getFinancialStatementContactsRevenue"); List contacts = new ArrayList(); contacts.add(UUID.fromString("1f580fe2-0659-31ee-eeb4-5c49d15d8bfa")); - contacts.add(UUID.fromString("20e94281-4751-fb7e-ee5e-96b43ae93c8a")); try { IncomeByContactResponse response = financeApi.getFinancialStatementContactsRevenue(accessToken, "73151de8-3676-4887-a021-edec960dd537",contacts,true,null,null); assertThat(response.getContacts().get(0).getName(), (equalTo("FirstContact"))); @@ -226,7 +197,6 @@ public void testGetFinancialStatementContactsExpense() throws Exception { System.out.println("@Test - getFinancialStatementContactsExpense"); List contacts = new ArrayList(); contacts.add(UUID.fromString("1f580fe2-0659-31ee-eeb4-5c49d15d8bfa")); - contacts.add(UUID.fromString("20e94281-4751-fb7e-ee5e-96b43ae93c8a")); try { IncomeByContactResponse response = financeApi.getFinancialStatementContactsExpense(accessToken, "73151de8-3676-4887-a021-edec960dd537",contacts,true,null,null); assertThat(response.getContacts().get(0).getName(), (equalTo("FirstContact"))); diff --git a/src/test/java/com/xero/api/client/PayrollAuApiEmployeeTest.java b/src/test/java/com/xero/api/client/PayrollAuApiEmployeeTest.java index 4a26781e..f3267341 100644 --- a/src/test/java/com/xero/api/client/PayrollAuApiEmployeeTest.java +++ b/src/test/java/com/xero/api/client/PayrollAuApiEmployeeTest.java @@ -1,44 +1,18 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollau.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; import java.util.List; import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollAuApiEmployeeTest { @@ -54,11 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5f9f95f1-25c8-40dd-8b10-8192c658dd79.mock.pstmn.io/payroll.xro/1.0",null,null,null,null); - payrollAuApi = PayrollAuApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollau.api.url"),null,null,null,null); + payrollAuApi = PayrollAuApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollAuApiLeaveApplicationTest.java b/src/test/java/com/xero/api/client/PayrollAuApiLeaveApplicationTest.java index a73ea525..02531fb5 100644 --- a/src/test/java/com/xero/api/client/PayrollAuApiLeaveApplicationTest.java +++ b/src/test/java/com/xero/api/client/PayrollAuApiLeaveApplicationTest.java @@ -1,44 +1,18 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollau.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; import java.util.List; import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollAuApiLeaveApplicationTest { @@ -54,11 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5f9f95f1-25c8-40dd-8b10-8192c658dd79.mock.pstmn.io/payroll.xro/1.0",null,null,null,null); - payrollAuApi = PayrollAuApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollau.api.url"),null,null,null,null); + payrollAuApi = PayrollAuApi.getInstance(defaultClient); } public void tearDown() { @@ -102,7 +73,7 @@ public void getLeaveApplicationTest() throws IOException { assertThat(response.getLeaveApplications().get(0).getEndDateAsDate(), is(equalTo(LocalDate.of(2019,11,12)))); assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getPayPeriodStartDateAsDate() , is(equalTo(LocalDate.of(2019,11,8)))); assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getPayPeriodEndDateAsDate() , is(equalTo(LocalDate.of(2019,11,14)))); - assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getNumberOfUnits(), is(equalTo(0.0))); + assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getNumberOfUnits(), is(equalTo(7.6))); assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getLeavePeriodStatus(), is(equalTo(com.xero.models.payrollau.LeavePeriodStatus.SCHEDULED))); assertThat(response.getLeaveApplications().get(0).getUpdatedDateUTCAsDate(), is(equalTo(OffsetDateTime.parse("2019-11-13T05:30:08Z")))); //System.out.println(response.toString()); @@ -123,7 +94,7 @@ public void createLeaveApplicationTest() throws IOException { assertThat(response.getLeaveApplications().get(0).getEndDateAsDate(), is(equalTo(LocalDate.of(2019,11,01)))); assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getPayPeriodStartDateAsDate() , is(equalTo(LocalDate.of(2019,11,1)))); assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getPayPeriodEndDateAsDate() , is(equalTo(LocalDate.of(2019,11,07)))); - assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getNumberOfUnits(), is(equalTo(0.6))); + assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getNumberOfUnits(), is(equalTo(7.6))); assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getLeavePeriodStatus(), is(equalTo(com.xero.models.payrollau.LeavePeriodStatus.SCHEDULED))); assertThat(response.getLeaveApplications().get(0).getUpdatedDateUTCAsDate(), is(equalTo(OffsetDateTime.parse("2019-11-13T21:16:31.897Z")))); //System.out.println(response.toString()); @@ -146,7 +117,7 @@ public void updateLeaveApplicationTest() throws IOException { assertThat(response.getLeaveApplications().get(0).getDescription(), is(equalTo("My updated Description"))); assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getPayPeriodStartDateAsDate() , is(equalTo(LocalDate.of(2019,11,01)))); assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getPayPeriodEndDateAsDate() , is(equalTo(LocalDate.of(2019,11,07)))); - assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getNumberOfUnits(), is(equalTo(0.6))); + assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getNumberOfUnits(), is(equalTo(7.6))); assertThat(response.getLeaveApplications().get(0).getLeavePeriods().get(0).getLeavePeriodStatus(), is(equalTo(com.xero.models.payrollau.LeavePeriodStatus.SCHEDULED))); assertThat(response.getLeaveApplications().get(0).getUpdatedDateUTCAsDate(), is(equalTo(OffsetDateTime.parse("2019-11-13T21:16:32.293Z")))); //System.out.println(response.toString()); diff --git a/src/test/java/com/xero/api/client/PayrollAuApiPayItemTest.java b/src/test/java/com/xero/api/client/PayrollAuApiPayItemTest.java index a18b3bb3..3e806a1b 100644 --- a/src/test/java/com/xero/api/client/PayrollAuApiPayItemTest.java +++ b/src/test/java/com/xero/api/client/PayrollAuApiPayItemTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollau.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollAuApiPayItemTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5f9f95f1-25c8-40dd-8b10-8192c658dd79.mock.pstmn.io/payroll.xro/1.0",null,null,null,null); - payrollAuApi = PayrollAuApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollau.api.url"),null,null,null,null); + payrollAuApi = PayrollAuApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollAuApiPayRunTest.java b/src/test/java/com/xero/api/client/PayrollAuApiPayRunTest.java index 59ce8624..d30ff139 100644 --- a/src/test/java/com/xero/api/client/PayrollAuApiPayRunTest.java +++ b/src/test/java/com/xero/api/client/PayrollAuApiPayRunTest.java @@ -1,44 +1,18 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollau.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; import java.util.List; import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollAuApiPayRunTest { @@ -54,10 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5f9f95f1-25c8-40dd-8b10-8192c658dd79.mock.pstmn.io/payroll.xro/1.0",null,null,null,null); - payrollAuApi = PayrollAuApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollau.api.url"),null,null,null,null); + payrollAuApi = PayrollAuApi.getInstance(defaultClient); } diff --git a/src/test/java/com/xero/api/client/PayrollAuApiPayrollCalendarTest.java b/src/test/java/com/xero/api/client/PayrollAuApiPayrollCalendarTest.java index e9125234..2fdcc80f 100644 --- a/src/test/java/com/xero/api/client/PayrollAuApiPayrollCalendarTest.java +++ b/src/test/java/com/xero/api/client/PayrollAuApiPayrollCalendarTest.java @@ -1,44 +1,18 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollau.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; import java.util.List; import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollAuApiPayrollCalendarTest { @@ -54,11 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5f9f95f1-25c8-40dd-8b10-8192c658dd79.mock.pstmn.io/payroll.xro/1.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollau.api.url"),null,null,null,null); payrollAuApi = PayrollAuApi.getInstance(defaultClient); - } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollAuApiPayslipTest.java b/src/test/java/com/xero/api/client/PayrollAuApiPayslipTest.java index aa7019bf..349ca07a 100644 --- a/src/test/java/com/xero/api/client/PayrollAuApiPayslipTest.java +++ b/src/test/java/com/xero/api/client/PayrollAuApiPayslipTest.java @@ -1,44 +1,18 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollau.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; import java.util.List; import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollAuApiPayslipTest { @@ -54,10 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5f9f95f1-25c8-40dd-8b10-8192c658dd79.mock.pstmn.io/payroll.xro/1.0",null,null,null,null); - payrollAuApi = PayrollAuApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollau.api.url"),null,null,null,null); + payrollAuApi = PayrollAuApi.getInstance(defaultClient); } diff --git a/src/test/java/com/xero/api/client/PayrollAuApiSettingsTest.java b/src/test/java/com/xero/api/client/PayrollAuApiSettingsTest.java index ceb82cad..343575b2 100644 --- a/src/test/java/com/xero/api/client/PayrollAuApiSettingsTest.java +++ b/src/test/java/com/xero/api/client/PayrollAuApiSettingsTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollau.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollAuApiSettingsTest { @@ -54,10 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5f9f95f1-25c8-40dd-8b10-8192c658dd79.mock.pstmn.io/payroll.xro/1.0",null,null,null,null); - payrollAuApi = PayrollAuApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollau.api.url"),null,null,null,null); + payrollAuApi = PayrollAuApi.getInstance(defaultClient); } diff --git a/src/test/java/com/xero/api/client/PayrollAuApiSuperFundTest.java b/src/test/java/com/xero/api/client/PayrollAuApiSuperFundTest.java index 4ced621a..5d7477a2 100644 --- a/src/test/java/com/xero/api/client/PayrollAuApiSuperFundTest.java +++ b/src/test/java/com/xero/api/client/PayrollAuApiSuperFundTest.java @@ -1,44 +1,18 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollau.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; import java.util.List; import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollAuApiSuperFundTest { @@ -54,10 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5f9f95f1-25c8-40dd-8b10-8192c658dd79.mock.pstmn.io/payroll.xro/1.0",null,null,null,null); - payrollAuApi = PayrollAuApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollau.api.url"),null,null,null,null); + payrollAuApi = PayrollAuApi.getInstance(defaultClient); } diff --git a/src/test/java/com/xero/api/client/PayrollAuApiSuperfundProductTest.java b/src/test/java/com/xero/api/client/PayrollAuApiSuperfundProductTest.java index 4e8c466d..e0761469 100644 --- a/src/test/java/com/xero/api/client/PayrollAuApiSuperfundProductTest.java +++ b/src/test/java/com/xero/api/client/PayrollAuApiSuperfundProductTest.java @@ -1,45 +1,14 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollau.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; - public class PayrollAuApiSuperfundProductTest { ApiClient defaultClient; @@ -54,10 +23,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5f9f95f1-25c8-40dd-8b10-8192c658dd79.mock.pstmn.io/payroll.xro/1.0",null,null,null,null); - payrollAuApi = PayrollAuApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollau.api.url"),null,null,null,null); + payrollAuApi = PayrollAuApi.getInstance(defaultClient); } diff --git a/src/test/java/com/xero/api/client/PayrollAuApiTimesheetTest.java b/src/test/java/com/xero/api/client/PayrollAuApiTimesheetTest.java index 1568d49b..908b0a75 100644 --- a/src/test/java/com/xero/api/client/PayrollAuApiTimesheetTest.java +++ b/src/test/java/com/xero/api/client/PayrollAuApiTimesheetTest.java @@ -1,44 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollau.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; +import java.io.InputStream; public class PayrollAuApiTimesheetTest { @@ -53,12 +26,9 @@ public void setUp() { // Set Access Token and Tenant Id accessToken = "123"; xeroTenantId = "xyz"; - - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5f9f95f1-25c8-40dd-8b10-8192c658dd79.mock.pstmn.io/payroll.xro/1.0",null,null,null,null); - payrollAuApi = PayrollAuApi.getInstance(defaultClient); - + + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollau.api.url"),null,null,null,null); + payrollAuApi = PayrollAuApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiDeductionsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiDeductionsTest.java index 058e9b40..b97fb373 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiDeductionsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiDeductionsTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; +import com.xero.models.payrollnz.Deduction.DeductionCategoryEnum; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiDeductionsTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { @@ -104,6 +73,9 @@ public void createDeductionTest() throws IOException { System.out.println("@Test NZ Payroll - createDeductionTest"); Deduction deduction = new Deduction(); + deduction.setDeductionName("Test Name"); + deduction.setDeductionCategory(DeductionCategoryEnum.NZOTHER); + deduction.setLiabilityAccountId(UUID.randomUUID()); DeductionObject response = payrollNzApi.createDeduction(accessToken, xeroTenantId, deduction, null); assertThat(response.getDeduction().getDeductionId(), is(equalTo(UUID.fromString("0ee805eb-f5b0-4061-9b35-d9ea550da04e")))); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEarningRatesTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEarningRatesTest.java index 04e263c0..28303e2f 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEarningRatesTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEarningRatesTest.java @@ -1,43 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; +import com.xero.models.payrollnz.EarningsRate.EarningsTypeEnum; +import com.xero.models.payrollnz.EarningsRate.RateTypeEnum; -import java.io.File; import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEarningRatesTest { @@ -53,11 +27,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { @@ -112,6 +83,11 @@ public void createEarningsRateTest() throws IOException { System.out.println("@Test NZ Payroll - createEarningsRateTest"); EarningsRate earningsRate = new EarningsRate(); + earningsRate.setName("My Earnings Rate"); + earningsRate.setEarningsType(EarningsTypeEnum.REGULAREARNINGS); + earningsRate.setRateType(RateTypeEnum.RATEPERUNIT); + earningsRate.setTypeOfUnits("hours"); + earningsRate.setExpenseAccountID(UUID.fromString("e4eb36f6-97e3-4427-a394-dd4e1b355c2e")); EarningsRateObject response = payrollNzApi.createEarningsRate(accessToken, xeroTenantId, earningsRate, null); assertThat(response.getEarningsRate().getEarningsRateID(),is(equalTo(UUID.fromString("4369b0ef-a64d-42e1-bb6d-f2fc984de133")))); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveBalancesTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveBalancesTest.java index 58b507b7..f4464026 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveBalancesTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveBalancesTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEmployeeLeaveBalancesTest { @@ -54,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeavePeriodsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeavePeriodsTest.java index dcdddcbc..1528dee1 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeavePeriodsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeavePeriodsTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEmployeeLeavePeriodsTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { @@ -77,7 +46,7 @@ public void getEmployeeLeavePeriodsTest() throws IOException { assertThat(response.getPeriods().get(0).getPeriodStartDate(), is(equalTo(LocalDate.of(2020, 02, 24)))); assertThat(response.getPeriods().get(0).getPeriodEndDate(), is(equalTo(LocalDate.of(2020, 03, 01)))); - assertThat(response.getPeriods().get(0).getNumberOfUnits() , is(equalTo(0.0))); + assertThat(response.getPeriods().get(0).getNumberOfUnits() , is(equalTo(24.0))); //System.out.println(response.toString()); } diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveSetupTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveSetupTest.java index f8ceaca2..99c3f4b5 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveSetupTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveSetupTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEmployeeLeaveSetupTest { @@ -54,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveTest.java index bf06c15f..c60994e6 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveTest.java @@ -1,45 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEmployeeLeaveTest { @@ -55,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { @@ -93,6 +61,10 @@ public void createEmployeeLeaveTest() throws IOException { System.out.println("@Test NZ Payroll - createEmployeeLeaveTest"); EmployeeLeave employeeLeave = new EmployeeLeave(); + employeeLeave.setLeaveTypeID(UUID.fromString("b0b1b79e-2a25-46c2-ad08-ca25ef48d7e4")); + employeeLeave.setDescription("Creating a Description"); + employeeLeave.setStartDate(LocalDate.of(2020, 04, 24)); + employeeLeave.setEndDate(LocalDate.of(2020, 04, 26)); UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); EmployeeLeaveObject response = payrollNzApi.createEmployeeLeave(accessToken, xeroTenantId, employeeId, employeeLeave, null); @@ -119,6 +91,10 @@ public void updateEmployeeLeaveTest() throws IOException { UUID leaveId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); EmployeeLeave employeeLeave = new EmployeeLeave(); + employeeLeave.setLeaveTypeID(UUID.fromString("b0b1b79e-2a25-46c2-ad08-ca25ef48d7e4")); + employeeLeave.setDescription("Creating a Description"); + employeeLeave.setStartDate(LocalDate.of(2020, 04, 24)); + employeeLeave.setEndDate(LocalDate.of(2020, 04, 26)); EmployeeLeaveObject response = payrollNzApi.updateEmployeeLeave(accessToken, xeroTenantId, employeeId, leaveId, employeeLeave, null); assertThat(response.getLeave().getLeaveID(), is(equalTo(UUID.fromString("82a04ba6-a5cc-4e7d-86d4-b9f381a494e8")))); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveTypesTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveTypesTest.java index ffd4b3e3..dc5cd87f 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveTypesTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeLeaveTypesTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEmployeeLeaveTypesTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeOpeningBalancesTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeOpeningBalancesTest.java index 69622c11..4052aba1 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeOpeningBalancesTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeOpeningBalancesTest.java @@ -1,44 +1,18 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; import java.util.List; import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEmployeeOpeningBalancesTest { @@ -54,11 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEmployeePayTemplatesTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEmployeePayTemplatesTest.java index 0bcaff83..0f3f2f8d 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEmployeePayTemplatesTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEmployeePayTemplatesTest.java @@ -1,44 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; import java.util.List; import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEmployeePayTemplatesTest { @@ -54,11 +27,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeTaxTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeTaxTest.java index 2cc685ef..b0f6c606 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeTaxTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeTaxTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEmployeeTaxTest { @@ -54,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); payrollNzApi = PayrollNzApi.getInstance(defaultClient); - } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeTest.java index 61c15c31..fd0ee789 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEmployeeTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEmployeeTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEmployeeTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { @@ -94,6 +63,14 @@ public void createEmployeeTest() throws IOException { System.out.println("@Test UK Payroll - createEmployeeTest"); Employee employee = new Employee(); + Address address = new Address(); + address.setAddressLine1("101 Green St"); + address.setCity("San Francisco"); + address.setPostCode("4351"); + employee.setAddress(address); + employee.setFirstName("Mike"); + employee.setLastName("Johntzxzpxhmkgson"); + employee.setDateOfBirth(LocalDate.now()); EmployeeObject response = payrollNzApi.createEmployee(accessToken, xeroTenantId, employee, null); assertThat(response.getEmployee().getEmployeeID(), is(equalTo(UUID.fromString("658be485-3feb-402e-9e77-ac17623aad42")))); @@ -141,6 +118,14 @@ public void updateEmployeeTest() throws IOException { UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); Employee employee = new Employee(); + Address address = new Address(); + address.setAddressLine1("101 Green St"); + address.setCity("San Francisco"); + address.setPostCode("4351"); + employee.setAddress(address); + employee.setFirstName("Mike"); + employee.setLastName("Johntzxzpxhmkgson"); + employee.setDateOfBirth(LocalDate.now()); EmployeeObject response = payrollNzApi.updateEmployee(accessToken, xeroTenantId, employeeId, employee, null); assertThat(response.getEmployee().getEmployeeID(), is(equalTo(UUID.fromString("68342973-c405-4b86-b5d3-d7b877c27995")))); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiEmploymentTest.java b/src/test/java/com/xero/api/client/PayrollNzApiEmploymentTest.java index 25411d6b..c9277153 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiEmploymentTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiEmploymentTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiEmploymentTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { @@ -72,6 +41,9 @@ public void createEmploymentTest() throws IOException { Employment employment = new Employment(); UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); + employment.setPayrollCalendarID(UUID.fromString("9aa56064-990f-4ad3-a189-d966d8f6a030")); + employment.setStartDate(LocalDate.now()); + employment.setEngagementType("FixedTerm"); EmploymentObject response = payrollNzApi.createEmployment(accessToken, xeroTenantId, employeeId, employment, null); assertThat(response.getEmployment().getPayrollCalendarID(), is(equalTo(UUID.fromString("9aa56064-990f-4ad3-a189-d966d8f6a030")))); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiLeaveTypesTest.java b/src/test/java/com/xero/api/client/PayrollNzApiLeaveTypesTest.java index d12394fe..ae9c4243 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiLeaveTypesTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiLeaveTypesTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiLeaveTypesTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { @@ -105,6 +74,11 @@ public void createLeaveTypeTest() throws IOException { System.out.println("@Test NZ Payroll - createLeaveTypeTest"); LeaveType leaveType = new LeaveType(); + leaveType.setLeaveTypeID(UUID.randomUUID()); + leaveType.setName("My opebvwbfxf Leave"); + leaveType.setIsPaidLeave(true); + leaveType.isActive(true); + leaveType.setShowOnPayslip(true); LeaveTypeObject response = payrollNzApi.createLeaveType(accessToken, xeroTenantId, leaveType, null); assertThat(response.getLeaveType().getLeaveTypeID(),is(equalTo(UUID.fromString("80464f55-b5c9-4d05-84c7-219d98baa3e2")))); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiPayRunCalendarsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiPayRunCalendarsTest.java index 0dad9252..b3404e7c 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiPayRunCalendarsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiPayRunCalendarsTest.java @@ -1,45 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiPayRunCalendarsTest { @@ -55,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { @@ -110,6 +78,10 @@ public void createPayRunCalendarTest() throws IOException { System.out.println("@Test NZ Payroll - createPayRunCalendarTest"); PayRunCalendar payRunCalendar = new PayRunCalendar(); + payRunCalendar.setName("My Weekly Cal"); + payRunCalendar.setCalendarType(com.xero.models.payrollnz.CalendarType.WEEKLY); + payRunCalendar.setPeriodStartDate(LocalDate.of(2020, 05, 01)); + payRunCalendar.setPaymentDate(LocalDate.of(2020, 05, 15)); PayRunCalendarObject response = payrollNzApi.createPayRunCalendar(accessToken, xeroTenantId, payRunCalendar, null); assertThat(response.getPayRunCalendar().getPayrollCalendarID(),is(equalTo(UUID.fromString("54e9706a-c4e8-45ff-9c63-6fcac7ee7cde")))); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiPayRunsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiPayRunsTest.java index 428f8fae..9e8cdf0a 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiPayRunsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiPayRunsTest.java @@ -1,45 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiPayRunsTest { @@ -55,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiPaySlipsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiPaySlipsTest.java index 2bbfbcd6..ef886e4a 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiPaySlipsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiPaySlipsTest.java @@ -1,45 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollNzApiPaySlipsTest { @@ -55,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiPaymentMethodsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiPaymentMethodsTest.java index 7dd98fc2..a143ffaf 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiPaymentMethodsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiPaymentMethodsTest.java @@ -1,45 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollNzApiPaymentMethodsTest { @@ -55,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); payrollNzApi = PayrollNzApi.getInstance(defaultClient); - } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiReimbursementsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiReimbursementsTest.java index f6e68953..a665ea67 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiReimbursementsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiReimbursementsTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollNzApiReimbursementsTest { @@ -54,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { @@ -122,6 +90,8 @@ public void createReimbursementTest() throws IOException { System.out.println("@Test NZ Payroll - createReimbursementTest"); Reimbursement reimbursement = new Reimbursement(); + reimbursement.setName("My new Reimburse"); + reimbursement.setAccountID(UUID.randomUUID()); ReimbursementObject response = payrollNzApi.createReimbursement(accessToken, xeroTenantId, reimbursement, null); // assertThat(response.getReimbursement().getReimbursementID(),is(equalTo(UUID.fromString("2b1b587a-39f6-43f8-9dd9-a858314333c8")))); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiSalaryAndWagesTest.java b/src/test/java/com/xero/api/client/PayrollNzApiSalaryAndWagesTest.java index 54516398..af3d5927 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiSalaryAndWagesTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiSalaryAndWagesTest.java @@ -1,44 +1,18 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; +import com.xero.models.payrollnz.SalaryAndWage.PaymentTypeEnum; +import com.xero.models.payrollnz.SalaryAndWage.StatusEnum; import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollNzApiSalaryAndWagesTest { @@ -54,11 +28,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { @@ -91,7 +62,14 @@ public void getSalaryAndWagesTest() throws IOException { public void createEmployeeSalaryAndWageTest() throws IOException { System.out.println("@Test NZ Payroll - createEmployeeSalaryAndWageTest"); - SalaryAndWage salaryAndWage = new SalaryAndWage(); + SalaryAndWage salaryAndWage = new SalaryAndWage(); + salaryAndWage.setEarningsRateID(UUID.randomUUID()); + salaryAndWage.setNumberOfUnitsPerWeek(1.00); + salaryAndWage.setNumberOfUnitsPerDay(1.00); + salaryAndWage.setEffectiveFrom(LocalDate.now()); + salaryAndWage.setAnnualSalary(2.00); + salaryAndWage.setStatus(StatusEnum.ACTIVE); + salaryAndWage .setPaymentType(PaymentTypeEnum.HOURLY); UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); SalaryAndWageObject response = payrollNzApi.createEmployeeSalaryAndWage(accessToken, xeroTenantId, employeeId, salaryAndWage, null); @@ -134,7 +112,14 @@ public void getEmployeeSalaryAndWageTest() throws IOException { public void updateEmployeeSalaryAndWageTest() throws IOException { System.out.println("@Test NZ Payroll - updateEmployeeSalaryAndWageTest"); - SalaryAndWage salaryAndWage = new SalaryAndWage(); + SalaryAndWage salaryAndWage = new SalaryAndWage(); + salaryAndWage.setEarningsRateID(UUID.randomUUID()); + salaryAndWage.setNumberOfUnitsPerWeek(1.00); + salaryAndWage.setNumberOfUnitsPerDay(1.00); + salaryAndWage.setEffectiveFrom(LocalDate.now()); + salaryAndWage.setAnnualSalary(2.00); + salaryAndWage.setStatus(StatusEnum.ACTIVE); + salaryAndWage .setPaymentType(PaymentTypeEnum.HOURLY); UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); UUID salaryAndWagesId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); SalaryAndWageObject response = payrollNzApi.updateEmployeeSalaryAndWage(accessToken, xeroTenantId, employeeId, salaryAndWagesId, salaryAndWage, null); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiSettingsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiSettingsTest.java index 03202250..452fdb5d 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiSettingsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiSettingsTest.java @@ -1,45 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollNzApiSettingsTest { @@ -55,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiStatutoryDeductionsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiStatutoryDeductionsTest.java index ebf5f3fb..6432b99b 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiStatutoryDeductionsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiStatutoryDeductionsTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollNzApiStatutoryDeductionsTest { @@ -54,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollNzApiSuperannuationsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiSuperannuationsTest.java index a647eea8..80deadf8 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiSuperannuationsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiSuperannuationsTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollNzApiSuperannuationsTest { @@ -54,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); payrollNzApi = PayrollNzApi.getInstance(defaultClient); - } public void tearDown() { @@ -107,6 +75,12 @@ public void createSuperannuationTest() throws IOException { System.out.println("@Test NZ Payroll - createSuperannuationTest"); Benefit benefit = new Benefit(); + benefit.setName("New Benefit"); + benefit.setCategory(com.xero.models.payrollnz.Benefit.CategoryEnum.OTHER); + benefit.setLiabilityAccountId(UUID.randomUUID()); + benefit.setExpenseAccountId(UUID.randomUUID()); + benefit.setCalculationTypeNZ(com.xero.models.payrollnz.Benefit.CalculationTypeNZEnum.FIXEDAMOUNT); + benefit.setPercentage(12.00); SuperannuationObject response = payrollNzApi.createSuperannuation(accessToken, xeroTenantId, benefit, null); assertThat(response.getBenefit().getId(), is(equalTo(UUID.fromString("8905a754-7ce8-40e2-9fa5-f819deb7adce")))); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiTimesheetsTest.java b/src/test/java/com/xero/api/client/PayrollNzApiTimesheetsTest.java index ba7e20b1..433ae18f 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiTimesheetsTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiTimesheetsTest.java @@ -1,45 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollNzApiTimesheetsTest { @@ -55,10 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } @@ -116,7 +85,18 @@ public void createTimesheetTest() throws IOException { int page = 1; UUID timesheetID = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); + List timesheetLines = new ArrayList<>(); + TimesheetLine timesheetLine = new TimesheetLine(); + timesheetLine.setEarningsRateID(UUID.randomUUID()); + timesheetLine.setNumberOfUnits(12.00); + timesheetLine.setDate(LocalDate.now()); + timesheetLines.add(timesheetLine); Timesheet timesheet = new Timesheet(); + timesheet.setTimesheetLines(timesheetLines); + timesheet.setPayrollCalendarID(UUID.randomUUID()); + timesheet.setEndDate(LocalDate.of(2020, 04, 19)); + timesheet.setStartDate(LocalDate.of(2020, 04, 13)); + timesheet.setEmployeeID(UUID.randomUUID()); TimesheetObject response = payrollNzApi.createTimesheet(accessToken, xeroTenantId, timesheet, null); assertThat(response.getTimesheet().getTimesheetID(),is(equalTo(UUID.fromString("d227445a-4188-453a-a196-48163a38188c")))); @@ -141,6 +121,9 @@ public void createTimesheetLineTest() throws IOException { UUID timesheetID = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); TimesheetLine timesheetLine = new TimesheetLine(); + timesheetLine.setEarningsRateID(UUID.randomUUID()); + timesheetLine.setNumberOfUnits(12.00); + timesheetLine.setDate(LocalDate.now()); TimesheetLineObject response = payrollNzApi.createTimesheetLine(accessToken, xeroTenantId, timesheetID, timesheetLine, null); assertThat(response.getTimesheetLine().getTimesheetLineID(),is(equalTo(UUID.fromString("10c3c63e-6cd0-4630-861f-08a2baa657fa")))); @@ -158,6 +141,9 @@ public void updateTimesheetLineTest() throws IOException { UUID timesheetID = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); UUID timesheetLineID = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); TimesheetLine timesheetLine = new TimesheetLine(); + timesheetLine.setEarningsRateID(UUID.randomUUID()); + timesheetLine.setNumberOfUnits(12.00); + timesheetLine.setDate(LocalDate.now()); TimesheetLineObject response = payrollNzApi.updateTimesheetLine(accessToken, xeroTenantId, timesheetID, timesheetLineID, timesheetLine, null); assertThat(response.getTimesheetLine().getTimesheetLineID(),is(equalTo(UUID.fromString("3397aab1-6cac-4804-a72b-00f396b04a08")))); diff --git a/src/test/java/com/xero/api/client/PayrollNzApiTrackingCategoriesTest.java b/src/test/java/com/xero/api/client/PayrollNzApiTrackingCategoriesTest.java index 9931127b..bc9740ce 100644 --- a/src/test/java/com/xero/api/client/PayrollNzApiTrackingCategoriesTest.java +++ b/src/test/java/com/xero/api/client/PayrollNzApiTrackingCategoriesTest.java @@ -1,45 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrollnz.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; -import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollNzApiTrackingCategoriesTest { @@ -54,12 +24,9 @@ public void setUp() { // Set Access Token and Tenant Id accessToken = "123"; xeroTenantId = "xyz"; - - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://5d4d8dd7-b3b2-4151-87c6-31841929f349.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollNzApi = PayrollNzApi.getInstance(defaultClient); - + + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrollnz.api.url"),null,null,null,null); + payrollNzApi = PayrollNzApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiDeductionsTest.java b/src/test/java/com/xero/api/client/PayrollUkApiDeductionsTest.java index 49f59d2c..b701af4e 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiDeductionsTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiDeductionsTest.java @@ -1,46 +1,14 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; public class PayrollUkApiDeductionsTest { @@ -56,11 +24,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { @@ -111,6 +76,10 @@ public void createDeductionTest() throws IOException { System.out.println("@Test UK Payroll - createDeductionTest"); Deduction deduction = new Deduction(); + deduction.setDeductionName("Test Name"); + deduction.setDeductionCategory(com.xero.models.payrolluk.Deduction.DeductionCategoryEnum.SALARYSACRIFICE); + deduction.setLiabilityAccountId(UUID.randomUUID()); + deduction.calculationType(com.xero.models.payrolluk.Deduction.CalculationTypeEnum.FIXEDAMOUNT); DeductionObject response = payrollUkApi.createDeduction(accessToken, xeroTenantId, deduction, null); assertThat(response.getDeduction().getDeductionId(), is(equalTo(UUID.fromString("b3695b29-750f-4957-98b4-678e4a529043")))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEarningRatesTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEarningRatesTest.java index bfd83284..69a795aa 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEarningRatesTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEarningRatesTest.java @@ -1,46 +1,14 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEarningRatesTest { @@ -56,11 +24,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { @@ -117,6 +82,11 @@ public void createEarningsRateTest() throws IOException { System.out.println("@Test UK Payroll - createEarningsRateTest"); EarningsRate earningsRate = new EarningsRate(); + earningsRate.setName("My Earnings Rate"); + earningsRate.setEarningsType(com.xero.models.payrolluk.EarningsRate.EarningsTypeEnum.REGULAREARNINGS); + earningsRate.setRateType(com.xero.models.payrolluk.EarningsRate.RateTypeEnum.RATEPERUNIT); + earningsRate.setTypeOfUnits("hours"); + earningsRate.setExpenseAccountID(UUID.fromString("e4eb36f6-97e3-4427-a394-dd4e1b355c2e")); EarningsRateObject response = payrollUkApi.createEarningsRate(accessToken, xeroTenantId, earningsRate, null); assertThat(response.getEarningsRate().getEarningsRateID(),is(equalTo(UUID.fromString("fcf811a8-3843-4e87-8431-c62e83158aef")))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEarningsOrdersTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEarningsOrdersTest.java index caf1a4aa..6db7d140 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEarningsOrdersTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEarningsOrdersTest.java @@ -1,46 +1,14 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEarningsOrdersTest { @@ -56,11 +24,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveBalancesTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveBalancesTest.java index 6ded2c29..efa5d0e4 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveBalancesTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveBalancesTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeeLeaveBalancesTest { @@ -54,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeavePeriodsTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeavePeriodsTest.java index 1078fbe0..e1d7d529 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeavePeriodsTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeavePeriodsTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeeLeavePeriodsTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveTest.java index e1fe1bbc..6d6ba389 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveTest.java @@ -1,45 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeeLeaveTest { @@ -55,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { @@ -93,6 +61,10 @@ public void createEmployeeLeaveTest() throws IOException { System.out.println("@Test UK Payroll - createEmployeeLeaveTest"); EmployeeLeave employeeLeave = new EmployeeLeave(); + employeeLeave.setLeaveTypeID(UUID.fromString("b0b1b79e-2a25-46c2-ad08-ca25ef48d7e4")); + employeeLeave.setDescription("Creating a Description"); + employeeLeave.setStartDate(LocalDate.of(2020, 04, 24)); + employeeLeave.setEndDate(LocalDate.of(2020, 04, 26)); UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); EmployeeLeaveObject response = payrollUkApi.createEmployeeLeave(accessToken, xeroTenantId, employeeId, employeeLeave, null); @@ -141,6 +113,10 @@ public void updateEmployeeLeaveTest() throws IOException { UUID leaveId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); EmployeeLeave employeeLeave = new EmployeeLeave(); + employeeLeave.setLeaveTypeID(UUID.fromString("b0b1b79e-2a25-46c2-ad08-ca25ef48d7e4")); + employeeLeave.setDescription("Creating a Description"); + employeeLeave.setStartDate(LocalDate.of(2020, 04, 24)); + employeeLeave.setEndDate(LocalDate.of(2020, 04, 26)); EmployeeLeaveObject response = payrollUkApi.updateEmployeeLeave(accessToken, xeroTenantId, employeeId, leaveId, employeeLeave, null); assertThat(response.getLeave().getLeaveID(), is(equalTo(UUID.fromString("8340b795-50c1-428e-9fda-90badf081ab4")))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveTypesTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveTypesTest.java index e8c202bb..7b59395d 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveTypesTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeLeaveTypesTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeeLeaveTypesTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { @@ -91,6 +60,9 @@ public void createEmployeeLeaveTypesTest() throws IOException { UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); EmployeeLeaveType employeeLeaveType = new EmployeeLeaveType(); + employeeLeaveType.setLeaveTypeID(UUID.randomUUID()); + employeeLeaveType.setScheduleOfAccrual(com.xero.models.payrolluk.EmployeeLeaveType.ScheduleOfAccrualEnum.BEGINNINGOFCALENDARYEAR); + employeeLeaveType.setHoursAccruedAnnually(10.00); EmployeeLeaveTypeObject response = payrollUkApi.createEmployeeLeaveType(accessToken, xeroTenantId, employeeId, employeeLeaveType, null); assertThat(response.getLeaveType().getLeaveTypeID(), is(equalTo(UUID.fromString("4918f233-bd31-43f9-9633-bcc6de1178f2")))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeOpeningBalancesTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeOpeningBalancesTest.java index f01cd051..cb276d77 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeOpeningBalancesTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeOpeningBalancesTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeeOpeningBalancesTest { @@ -54,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeePayTemplatesTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeePayTemplatesTest.java index 9886e979..1903527d 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeePayTemplatesTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeePayTemplatesTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeePayTemplatesTest { @@ -54,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutoryLeaveBalancesTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutoryLeaveBalancesTest.java index 6d05632f..2541adfd 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutoryLeaveBalancesTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutoryLeaveBalancesTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeeStatutoryLeaveBalancesTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutoryLeavesSummaryTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutoryLeavesSummaryTest.java index 9125fd09..ebf24043 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutoryLeavesSummaryTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutoryLeavesSummaryTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeeStatutoryLeavesSummaryTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutorySickLeaveTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutorySickLeaveTest.java index e2a05da4..8ebb7749 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutorySickLeaveTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeStatutorySickLeaveTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeeStatutorySickLeaveTest { @@ -54,11 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { @@ -72,6 +41,13 @@ public void createEmployeeStatutorySickLeaveTest() throws IOException { UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); EmployeeStatutorySickLeave employeeStatutorySickLeave = new EmployeeStatutorySickLeave(); + employeeStatutorySickLeave.setEmployeeID(UUID.randomUUID()); + employeeStatutorySickLeave.setEndDate(LocalDate.of(2020, 04, 21)); + employeeStatutorySickLeave.setStartDate(LocalDate.of(2020, 04, 21)); + employeeStatutorySickLeave.setWorkPattern(List.of("Monday", "Wednesday")); + employeeStatutorySickLeave.setLeaveTypeID(UUID.randomUUID()); + employeeStatutorySickLeave.isPregnancyRelated(false); + employeeStatutorySickLeave.setSufficientNotice(true); EmployeeStatutorySickLeaveObject response = payrollUkApi.createEmployeeStatutorySickLeave(accessToken, xeroTenantId, employeeStatutorySickLeave, null); assertThat(response.getStatutorySickLeave().getStatutoryLeaveID(), is(equalTo(UUID.fromString("a2b5a1fb-ae21-47b4-876d-0b61fa6b37ab")))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeTaxTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeTaxTest.java index 43578a88..aafdb7f5 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeTaxTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeTaxTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeeTaxTest { @@ -54,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeTest.java index 66fef7f7..c8678ee1 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployeeTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployeeTest.java @@ -1,44 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; +import com.xero.models.payrolluk.Employee.GenderEnum; import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployeeTest { @@ -54,11 +27,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { @@ -94,6 +64,23 @@ public void createEmployeeTest() throws IOException { System.out.println("@Test UK Payroll - createEmployeeTest"); Employee employee = new Employee(); + Address address = new Address(); + address.setAddressLine1("101 Green St"); + address.setCity("Rangiora"); + address.setPostCode("SW6 6EY"); + address.setCountryName("UNITED KINGDOM"); + employee.setAddress(address); + employee.setEmployeeID(UUID.randomUUID()); + employee.setFirstName("Adam"); + employee.setLastName("Adamson"); + employee.setDateOfBirth(LocalDate.of(2019, 7, 12)); + employee.setTitle("Mrs"); + employee.setGender(GenderEnum.M); + employee.email("test@test.com"); + employee.setPhoneNumber("415-555-1212"); + employee.setStartDate(LocalDate.of(2023, 7, 12)); + employee.setEndDate(LocalDate.of(2024, 7, 12)); + System.out.println(employee); EmployeeObject response = payrollUkApi.createEmployee(accessToken, xeroTenantId, employee, null); assertThat(response.getEmployee().getEmployeeID(), is(equalTo(UUID.fromString("316146c7-26a4-4065-b9bd-346d0557ea96")))); @@ -101,9 +88,9 @@ public void createEmployeeTest() throws IOException { assertThat(response.getEmployee().getFirstName(), is(equalTo("Mike"))); assertThat(response.getEmployee().getLastName(), is(equalTo("Fancy"))); assertThat(response.getEmployee().getDateOfBirth(), is(equalTo(LocalDate.of(1999, 01, 01)))); - assertThat(response.getEmployee().getAddress().getAddressLine1(), is(equalTo("101 Green St"))); - assertThat(response.getEmployee().getAddress().getCity(), is(equalTo("San Francisco"))); - assertThat(response.getEmployee().getAddress().getPostCode(), is(equalTo("6TGR4F"))); + assertThat(response.getEmployee().getAddress().getAddressLine1(), is(equalTo("171 Midsummer"))); + assertThat(response.getEmployee().getAddress().getCity(), is(equalTo("Milton Keyness"))); + assertThat(response.getEmployee().getAddress().getPostCode(), is(equalTo("MK9 1EB"))); assertThat(response.getEmployee().getEmail(), is(equalTo("mike@starkindustries.com"))); assertThat(response.getEmployee().getGender() , is(equalTo(com.xero.models.payrolluk.Employee.GenderEnum.M))); assertThat(response.getEmployee().getUpdatedDateUTC(), is(equalTo(LocalDateTime.of(2020, 03, 25, 03, 12, 10) ))); @@ -119,20 +106,19 @@ public void getEmployeeTest() throws IOException { UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); EmployeeObject response = payrollUkApi.getEmployee(accessToken, xeroTenantId, employeeId); - assertThat(response.getEmployee().getEmployeeID(), is(equalTo(UUID.fromString("aad6b292-7b94-408b-93f6-e489867e3fb0")))); + assertThat(response.getEmployee().getEmployeeID(), is(equalTo(UUID.fromString("d17e008e-3381-45c0-b50c-2fab7757e503")))); assertThat(response.getEmployee().getTitle(), is(equalTo("Mr."))); - assertThat(response.getEmployee().getFirstName(), is(equalTo("Jack"))); - assertThat(response.getEmployee().getLastName(), is(equalTo("Allan"))); - assertThat(response.getEmployee().getDateOfBirth(), is(equalTo(LocalDate.of(1987, 12, 23)))); - assertThat(response.getEmployee().getAddress().getAddressLine1(), is(equalTo("171 Midsummer Boulevard"))); - assertThat(response.getEmployee().getAddress().getCity(), is(equalTo("Milton Keynes"))); + assertThat(response.getEmployee().getFirstName(), is(equalTo("Edgar"))); + assertThat(response.getEmployee().getLastName(), is(equalTo("Allan Po"))); + assertThat(response.getEmployee().getDateOfBirth(), is(equalTo(LocalDate.of(1985, 03, 24)))); + assertThat(response.getEmployee().getAddress().getAddressLine1(), is(equalTo("171 Midsummer"))); + assertThat(response.getEmployee().getAddress().getCity(), is(equalTo("Milton Keyness"))); assertThat(response.getEmployee().getAddress().getPostCode(), is(equalTo("MK9 1EB"))); assertThat(response.getEmployee().getAddress().getCountryName(), is(equalTo("UNITED KINGDOM"))); assertThat(response.getEmployee().getGender() , is(equalTo(com.xero.models.payrolluk.Employee.GenderEnum.M))); - assertThat(response.getEmployee().getStartDate(), is(equalTo(LocalDate.of(2020, 02, 03)))); assertThat(response.getEmployee().getPayrollCalendarID(), is(equalTo(UUID.fromString("216d80e6-af55-47b1-b718-9457c3f5d2fe")))); - assertThat(response.getEmployee().getUpdatedDateUTC(), is(equalTo(LocalDateTime.of(2020, 02, 13, 16, 23 ,31) ))); - assertThat(response.getEmployee().getCreatedDateUTC(), is(equalTo(LocalDateTime.of(2020, 02, 10, 10, 00, 24) ))); + assertThat(response.getEmployee().getUpdatedDateUTC(), is(equalTo(LocalDateTime.of(2017, 05, 12, 10, 00 ,24) ))); + assertThat(response.getEmployee().getCreatedDateUTC(), is(equalTo(LocalDateTime.of(2017, 05, 12, 10, 00, 24) ))); assertThat(response.getEmployee().getNationalInsuranceNumber(), is(equalTo("AB123456C"))); //System.out.println(response.toString()); } @@ -143,9 +129,26 @@ public void updateEmployeeTest() throws IOException { UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); Employee employee = new Employee(); + employee.setEmployeeID(UUID.randomUUID()); + employee.setFirstName("Adam"); + employee.setLastName("Adamson"); + employee.setDateOfBirth(LocalDate.of(2019, 7, 12)); + employee.setTitle("Mrs"); + employee.setGender(GenderEnum.M); + employee.email("test@test.com"); + employee.setPhoneNumber("415-555-1212"); + employee.setStartDate(LocalDate.of(2023, 7, 12)); + employee.setEndDate(LocalDate.of(2024, 7, 12)); + Address address = new Address(); + address.setAddressLine1("101 Green St"); + address.setCity("Rangiora"); + address.setPostCode("SW6 6EY"); + address.setCountryName("UNITED KINGDOM"); + employee.setAddress(address); + EmployeeObject response = payrollUkApi.updateEmployee(accessToken, xeroTenantId, employeeId, employee, null); - assertThat(response.getEmployee().getEmployeeID(), is(equalTo(UUID.fromString("aad6b292-7b94-408b-93f6-e489867e3fb0")))); + assertThat(response.getEmployee().getEmployeeID(), is(equalTo(UUID.fromString("07f0f9fc-cc95-46ac-9a8a-aa03779f2bde")))); assertThat(response.getEmployee().getTitle(), is(equalTo("Mr"))); assertThat(response.getEmployee().getFirstName(), is(equalTo("Mike"))); assertThat(response.getEmployee().getLastName(), is(equalTo("Johnllsbkrhwopson"))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmployerPensionsTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmployerPensionsTest.java index df3567a4..f6e5d066 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmployerPensionsTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmployerPensionsTest.java @@ -1,46 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; import com.xero.models.payrolluk.Benefit.CategoryEnum; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmployerPensionsTest { @@ -56,11 +27,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); payrollUkApi = PayrollUkApi.getInstance(defaultClient); - } public void tearDown() { @@ -112,6 +80,12 @@ public void createBenefitTest() throws IOException { System.out.println("@Test UK Payroll - createBenefitTest"); Benefit benefit = new Benefit(); + benefit.setName("Test"); + benefit.setCategory(CategoryEnum.STAKEHOLDERPENSION); + benefit.setLiabilityAccountId(UUID.randomUUID()); + benefit.setExpenseAccountId(UUID.randomUUID()); + benefit.setCalculationType(CalculationTypeEnum.FIXEDAMOUNT); + benefit.setPercentage(100.00); BenefitObject response = payrollUkApi.createBenefit(accessToken, xeroTenantId, benefit, null); assertThat(response.getBenefit().getId(), is(equalTo(UUID.fromString("d295bf25-fb61-4f91-9b62-a9ae87633746")))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiEmploymentTest.java b/src/test/java/com/xero/api/client/PayrollUkApiEmploymentTest.java index b10a2757..bf8f001a 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiEmploymentTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiEmploymentTest.java @@ -1,44 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; +import com.xero.models.payrolluk.Employment.NiCategoryEnum; import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiEmploymentTest { @@ -54,11 +27,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { @@ -71,9 +41,12 @@ public void createEmploymentTest() throws IOException { System.out.println("@Test UK Payroll - createEmploymentTest"); Employment employment = new Employment(); + employment.setPayrollCalendarID(UUID.randomUUID()); + employment.setEmployeeNumber("007"); + employment.setStartDate(LocalDate.of(2024, 04, 01)); + employment.setNiCategory(NiCategoryEnum.A); UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); EmploymentObject response = payrollUkApi.createEmployment(accessToken, xeroTenantId, employeeId, employment, null); - assertThat(response.getEmployment().getPayrollCalendarID(), is(equalTo(UUID.fromString("216d80e6-af55-47b1-b718-9457c3f5d2fe")))); assertThat(response.getEmployment().getStartDate(), is(equalTo(LocalDate.of(2020, 04, 01)))); assertThat(response.getEmployment().getEmployeeNumber(), is(equalTo("123ABC"))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiLeaveTypesTest.java b/src/test/java/com/xero/api/client/PayrollUkApiLeaveTypesTest.java index 6d22aa7f..a29ac76f 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiLeaveTypesTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiLeaveTypesTest.java @@ -1,46 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiLeaveTypesTest { @@ -56,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { @@ -109,6 +75,12 @@ public void createLeaveTypeTest() throws IOException { System.out.println("@Test UK Payroll - createLeaveTypeTest"); LeaveType leaveType = new LeaveType(); + leaveType.setLeaveID(UUID.randomUUID()); + leaveType.setName("My opebvwbfxf Leave"); + leaveType.setIsStatutoryLeave(true); + leaveType.setIsPaidLeave(true); + leaveType.isActive(true); + leaveType.setShowOnPayslip(true); LeaveTypeObject response = payrollUkApi.createLeaveType(accessToken, xeroTenantId, leaveType, null); assertThat(response.getLeaveType().getLeaveTypeID(),is(equalTo(UUID.fromString("4c027a23-6e7b-4547-808b-c34b2b140fef")))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiPayRunCalendarsTest.java b/src/test/java/com/xero/api/client/PayrollUkApiPayRunCalendarsTest.java index c1fcc47b..9b5dc97c 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiPayRunCalendarsTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiPayRunCalendarsTest.java @@ -1,47 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiPayRunCalendarsTest { @@ -57,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { @@ -112,6 +77,10 @@ public void createPayRunCalendarTest() throws IOException { System.out.println("@Test UK Payroll - createPayRunCalendarTest"); PayRunCalendar payRunCalendar = new PayRunCalendar(); + payRunCalendar.setName("My Weekly Cal"); + payRunCalendar.setCalendarType(com.xero.models.payrolluk.PayRunCalendar.CalendarTypeEnum.ANNUAL); + payRunCalendar.setPeriodStartDate(LocalDate.of(2020, 05, 01)); + payRunCalendar.setPaymentDate(LocalDate.of(2020, 05, 15)); PayRunCalendarObject response = payrollUkApi.createPayRunCalendar(accessToken, xeroTenantId, payRunCalendar, null); assertThat(response.getPayRunCalendar().getPayrollCalendarID(),is(equalTo(UUID.fromString("5f29322d-9123-49be-bef0-9b14c35653d1")))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiPayRunsTest.java b/src/test/java/com/xero/api/client/PayrollUkApiPayRunsTest.java index f5a943f0..96540344 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiPayRunsTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiPayRunsTest.java @@ -1,47 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiPayRunsTest { @@ -57,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiPaymentMethodsTest.java b/src/test/java/com/xero/api/client/PayrollUkApiPaymentMethodsTest.java index 1ab37ae8..1430f260 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiPaymentMethodsTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiPaymentMethodsTest.java @@ -1,47 +1,14 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiPaymentMethodsTest { @@ -57,11 +24,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); payrollUkApi = PayrollUkApi.getInstance(defaultClient); - } public void tearDown() { @@ -92,6 +56,7 @@ public void createEmployeePaymentMethodTest() throws IOException { int page = 1; UUID employeeId = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); PaymentMethod paymentMethod = new PaymentMethod(); + paymentMethod.setPaymentMethod(com.xero.models.payrolluk.PaymentMethod.PaymentMethodEnum.ELECTRONICALLY); PaymentMethodObject response = payrollUkApi.createEmployeePaymentMethod(accessToken, xeroTenantId, employeeId, paymentMethod, null); assertThat(response.getPaymentMethod().getPaymentMethod(), is(equalTo(com.xero.models.payrolluk.PaymentMethod.PaymentMethodEnum.ELECTRONICALLY))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiPayslipsTest.java b/src/test/java/com/xero/api/client/PayrollUkApiPayslipsTest.java index d2bd33a4..3b0dbaed 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiPayslipsTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiPayslipsTest.java @@ -1,48 +1,14 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; - +import java.util.*; public class PayrollUkApiPayslipsTest { ApiClient defaultClient; @@ -57,11 +23,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/PayrollUkApiReimbursementsTest.java b/src/test/java/com/xero/api/client/PayrollUkApiReimbursementsTest.java index e903e9f5..b4daf10e 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiReimbursementsTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiReimbursementsTest.java @@ -1,46 +1,14 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiReimbursementsTest { @@ -56,10 +24,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } @@ -103,6 +69,8 @@ public void createReimbursementTest() throws IOException { System.out.println("@Test UK Payroll - createReimbursementTest"); Reimbursement reimbursement = new Reimbursement(); + reimbursement.setName("My new Reimburse"); + reimbursement.setAccountID(UUID.randomUUID()); ReimbursementObject response = payrollUkApi.createReimbursement(accessToken, xeroTenantId, reimbursement, null); assertThat(response.getReimbursement().getReimbursementID(),is(equalTo(UUID.fromString("2b1b587a-39f6-43f8-9dd9-a858314333c8")))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiSettingsTest.java b/src/test/java/com/xero/api/client/PayrollUkApiSettingsTest.java index d58082d9..43d13f39 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiSettingsTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiSettingsTest.java @@ -1,47 +1,14 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiSettingsTest { @@ -57,10 +24,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } diff --git a/src/test/java/com/xero/api/client/PayrollUkApiTimesheetsTest.java b/src/test/java/com/xero/api/client/PayrollUkApiTimesheetsTest.java index 6ab5c507..8141fc3a 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiTimesheetsTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiTimesheetsTest.java @@ -1,47 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class PayrollUkApiTimesheetsTest { @@ -57,10 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } @@ -118,8 +84,19 @@ public void createTimesheetTest() throws IOException { System.out.println("@Test UK Payroll - createTimesheetTest"); int page = 1; - UUID timesheetID = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); + UUID timesheetID = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); + List timesheetLines = new ArrayList<>(); + TimesheetLine timesheetLine = new TimesheetLine(); + timesheetLine.setEarningsRateID(UUID.randomUUID()); + timesheetLine.setNumberOfUnits(12.00); + timesheetLine.setDate(LocalDate.now()); + timesheetLines.add(timesheetLine); Timesheet timesheet = new Timesheet(); + timesheet.setTimesheetLines(timesheetLines); + timesheet.setPayrollCalendarID(UUID.randomUUID()); + timesheet.setEndDate(LocalDate.of(2020, 04, 19)); + timesheet.setStartDate(LocalDate.of(2020, 04, 13)); + timesheet.setEmployeeID(UUID.randomUUID()); TimesheetObject response = payrollUkApi.createTimesheet(accessToken, xeroTenantId, timesheet, null); assertThat(response.getTimesheet().getTimesheetID(),is(equalTo(UUID.fromString("88d2038a-06f7-4b8a-bdab-809804c0aa1d")))); @@ -144,6 +121,9 @@ public void createTimesheetLineTest() throws IOException { UUID timesheetID = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); TimesheetLine timesheetLine = new TimesheetLine(); + timesheetLine.setEarningsRateID(UUID.randomUUID()); + timesheetLine.setNumberOfUnits(12.00); + timesheetLine.setDate(LocalDate.now()); TimesheetLineObject response = payrollUkApi.createTimesheetLine(accessToken, xeroTenantId, timesheetID, timesheetLine, null); assertThat(response.getTimesheetLine().getTimesheetLineID(),is(equalTo(UUID.fromString("56fce87e-7f0d-4c19-8f74-7f5656651c81")))); @@ -161,6 +141,9 @@ public void updateTimesheetLineTest() throws IOException { UUID timesheetID = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); UUID timesheetLineID = UUID.fromString("cdfb8371-0b21-4b8a-8903-1024df6c391e"); TimesheetLine timesheetLine = new TimesheetLine(); + timesheetLine.setEarningsRateID(UUID.randomUUID()); + timesheetLine.setNumberOfUnits(12.00); + timesheetLine.setDate(LocalDate.now()); TimesheetLineObject response = payrollUkApi.updateTimesheetLine(accessToken, xeroTenantId, timesheetID, timesheetLineID, timesheetLine, null); assertThat(response.getTimesheetLine().getTimesheetLineID(),is(equalTo(UUID.fromString("c88edcad-af32-4536-a682-9a4772c21c8d")))); diff --git a/src/test/java/com/xero/api/client/PayrollUkApiTrackingCategoriesTest.java b/src/test/java/com/xero/api/client/PayrollUkApiTrackingCategoriesTest.java index 081ca282..9d09b9f6 100644 --- a/src/test/java/com/xero/api/client/PayrollUkApiTrackingCategoriesTest.java +++ b/src/test/java/com/xero/api/client/PayrollUkApiTrackingCategoriesTest.java @@ -1,47 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.payrolluk.*; -import com.xero.models.payrolluk.Benefit.CalculationTypeEnum; -import com.xero.models.payrolluk.Benefit.CategoryEnum; - -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; -import org.threeten.bp.temporal.ChronoUnit; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; +import java.io.InputStream; public class PayrollUkApiTrackingCategoriesTest { @@ -57,11 +25,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://ba3fd247-8fc6-4d7c-bcd1-bdbea4ea1803.mock.pstmn.io/payroll.xro/2.0",null,null,null,null); - payrollUkApi = PayrollUkApi.getInstance(defaultClient); - + defaultClient = new ApiClient(ConfigurationLoader.getProperty("payrolluk.api.url"),null,null,null,null); + payrollUkApi = PayrollUkApi.getInstance(defaultClient); } public void tearDown() { diff --git a/src/test/java/com/xero/api/client/ProjectsApiProjectTasksTest.java b/src/test/java/com/xero/api/client/ProjectsApiProjectTasksTest.java index 68ed245a..a6c3b542 100644 --- a/src/test/java/com/xero/api/client/ProjectsApiProjectTasksTest.java +++ b/src/test/java/com/xero/api/client/ProjectsApiProjectTasksTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.project.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class ProjectsApiProjectTasksTest { @@ -55,10 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectsApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://3fe1c2ee-7113-4035-9e6d-53dad2fb2af3.mock.pstmn.io/projects.xro/2.0",null,null,null,null); - projectApi = ProjectApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("projects.api.url"),null,null,null,null); + projectApi = ProjectApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { diff --git a/src/test/java/com/xero/api/client/ProjectsApiProjectUsersTest.java b/src/test/java/com/xero/api/client/ProjectsApiProjectUsersTest.java index d48ea6f6..7f8d5dad 100644 --- a/src/test/java/com/xero/api/client/ProjectsApiProjectUsersTest.java +++ b/src/test/java/com/xero/api/client/ProjectsApiProjectUsersTest.java @@ -1,44 +1,15 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.project.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - -import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class ProjectsApiProjectUsersTest { @@ -55,10 +26,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://3fe1c2ee-7113-4035-9e6d-53dad2fb2af3.mock.pstmn.io/projects.xro/2.0",null,null,null,null); - projectApi = ProjectApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("projects.api.url"),null,null,null,null); + projectApi = ProjectApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { @@ -93,8 +62,8 @@ public void getProjectUsersTest() throws IOException { assertThat(response.getPagination().getPageCount(), is(equalTo(1))); assertThat(response.getPagination().getPageSize(), is(equalTo(50))); assertThat(response.getItems().get(0).getUserId(), is(equalTo(UUID.fromString("740add2a-a703-4b8a-a670-1093919c2040")))); - assertThat(response.getItems().get(0).getName(), is(equalTo("Sidney Maestre"))); - assertThat(response.getItems().get(0).getEmail(), is(equalTo("sid.maestre@xero.com"))); + assertThat(response.getItems().get(0).getName(), is(equalTo("Test User"))); + assertThat(response.getItems().get(0).getEmail(), is(equalTo("test@xero.com"))); // System.out.println(response.toString()); } diff --git a/src/test/java/com/xero/api/client/ProjectsApiProjectsTest.java b/src/test/java/com/xero/api/client/ProjectsApiProjectsTest.java index 6b364be6..47580c37 100644 --- a/src/test/java/com/xero/api/client/ProjectsApiProjectsTest.java +++ b/src/test/java/com/xero/api/client/ProjectsApiProjectsTest.java @@ -1,44 +1,16 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.project.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; public class ProjectsApiProjectsTest { @@ -55,10 +27,8 @@ public void setUp() { accessToken = "123"; xeroTenantId = "xyz"; - // Init projectApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://3fe1c2ee-7113-4035-9e6d-53dad2fb2af3.mock.pstmn.io/projects.xro/2.0",null,null,null,null); - projectApi = projectApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("projects.api.url"),null,null,null,null); + projectApi = ProjectApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { @@ -134,6 +104,7 @@ public void createProjectsTest() throws IOException { System.out.println("@Test - createProjectsTest"); ProjectCreateOrUpdate projectCreateOrUpdate = new ProjectCreateOrUpdate(); + projectCreateOrUpdate.setName("New Kitchen"); Project response = projectApi.createProject(accessToken, xeroTenantId, projectCreateOrUpdate, null); assertThat(response.getContactId(), is(equalTo(UUID.fromString("216830cb-9a68-487e-928b-c1a7ccc4fc81")))); @@ -180,7 +151,7 @@ public void getProjectTest() throws IOException { assertThat(response.getContactId(), is(equalTo(UUID.fromString("216830cb-9a68-487e-928b-c1a7ccc4fc81")))); assertThat(response.getProjectId(), is(equalTo(UUID.fromString("b021e7cb-1903-4292-b48b-5b27b4271e3e")))); - assertThat(response.getName(), is(equalTo("FooProject28916"))); + assertThat(response.getName(), is(equalTo("Remodeling 2012"))); assertThat(response.getCurrencyCode(), is(equalTo(com.xero.models.project.CurrencyCode.AUD))); assertThat(response.getMinutesLogged(), is(equalTo(180))); assertThat(response.getTotalTaskAmount().getCurrency(), is(equalTo(com.xero.models.project.CurrencyCode.AUD))); diff --git a/src/test/java/com/xero/api/client/ProjectsApiTimeEntriesTest.java b/src/test/java/com/xero/api/client/ProjectsApiTimeEntriesTest.java index 7130b06d..0444f417 100644 --- a/src/test/java/com/xero/api/client/ProjectsApiTimeEntriesTest.java +++ b/src/test/java/com/xero/api/client/ProjectsApiTimeEntriesTest.java @@ -1,47 +1,17 @@ package com.xero.api.client; -import static org.junit.Assert.assertTrue; - import org.junit.*; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.collection.IsCollectionWithSize.hasSize; -import static org.hamcrest.core.Every.everyItem; - import com.xero.api.ApiClient; -import com.xero.api.client.*; +import com.xero.api.util.ConfigurationLoader; import com.xero.models.project.*; -import java.io.File; -import java.net.URL; - -import com.google.api.client.auth.oauth2.BearerToken; -import com.google.api.client.auth.oauth2.Credential; -import com.google.api.client.http.HttpRequestFactory; -import com.google.api.client.http.HttpTransport; -import com.google.api.client.http.javanet.NetHttpTransport; - import org.threeten.bp.*; import java.io.IOException; -import com.fasterxml.jackson.core.type.TypeReference; - -import java.io.File; -import java.io.IOException; - -import org.apache.commons.io.IOUtils; - -import java.util.Calendar; -import java.util.Map; -import java.util.UUID; - -import jakarta.ws.rs.core.Response; - -import java.util.List; -import java.util.ArrayList; -import java.math.BigDecimal; +import java.util.*; +import java.io.InputStream; public class ProjectsApiTimeEntriesTest { @@ -57,11 +27,8 @@ public void setUp() { // Set Access Token and Tenant Id accessToken = "123"; xeroTenantId = "xyz"; - - // Init projectsApi client - // NEW Sandbox for API Mocking - defaultClient = new ApiClient("https://3fe1c2ee-7113-4035-9e6d-53dad2fb2af3.mock.pstmn.io/projects.xro/2.0",null,null,null,null); - projectApi = ProjectApi.getInstance(defaultClient); + defaultClient = new ApiClient(ConfigurationLoader.getProperty("projects.api.url"),null,null,null,null); + projectApi = ProjectApi.getInstance(defaultClient); // ADDED TO MANAGE RATE LIMITS while using SwaggerHub to mock APIs if (setUpIsDone) { @@ -109,7 +76,7 @@ public void getTimeEntriesTest() throws IOException { assertThat(response.getItems().get(0).getProjectId(), is(equalTo(UUID.fromString("b021e7cb-1903-4292-b48b-5b27b4271e3e")))); assertThat(response.getItems().get(0).getTaskId(), is(equalTo(UUID.fromString("7be77337-feec-4458-bb1b-dbaa5a4aafce")))); assertThat(response.getItems().get(0).getDateUtc(), is(equalTo(OffsetDateTime.parse("2020-02-27T15:00Z")))); - assertThat(response.getItems().get(0).getDateEnteredUtc(), is(equalTo(OffsetDateTime.parse("2020-02-21T21:41:22.264272700Z")))); + assertThat(response.getItems().get(0).getDateEnteredUtc(), is(equalTo(OffsetDateTime.parse("2020-02-28T03:24:29.221564100Z")))); assertThat(response.getItems().get(0).getDuration(), is(equalTo(45))); assertThat(response.getItems().get(0).getStatus(),is(equalTo(com.xero.models.project.TimeEntry.StatusEnum.ACTIVE))); //System.out.println(response.toString()); @@ -120,11 +87,15 @@ public void createTimeEntryTest() throws IOException { System.out.println("@Test - createTimeEntryTest"); TimeEntryCreateOrUpdate timeEntryCreateOrUpdate = new TimeEntryCreateOrUpdate(); + timeEntryCreateOrUpdate.setUserId(UUID.fromString("c6539534-f1d2-43a6-80df-3bd1f8aca24d")); + timeEntryCreateOrUpdate.setTaskId(UUID.fromString("7be77337-feec-4458-bb1b-dbaa5a4aafce")); + timeEntryCreateOrUpdate.setDateUtc(OffsetDateTime.parse("2020-02-26T15:00Z")); + timeEntryCreateOrUpdate.setDuration(1); UUID projectId = UUID.fromString("8138a266-fb42-49b2-a104-014b7045753d"); TimeEntry response = projectApi.createTimeEntry(accessToken, xeroTenantId, projectId, timeEntryCreateOrUpdate, null); assertThat(response.getTimeEntryId(),is(equalTo(UUID.fromString("c6539534-f1d2-43a6-80df-3bd1f8aca24d")))); - assertThat(response.getUserId(), is(equalTo(UUID.fromString("740add2a-a703-4b8a-a670-1093919c2040")))); + assertThat(response.getUserId(), is(equalTo(UUID.fromString("c6539534-f1d2-43a6-80df-3bd1f8aca24d")))); assertThat(response.getProjectId(), is(equalTo(UUID.fromString("b021e7cb-1903-4292-b48b-5b27b4271e3e")))); assertThat(response.getTaskId(), is(equalTo(UUID.fromString("7be77337-feec-4458-bb1b-dbaa5a4aafce")))); assertThat(response.getDateUtc(), is(equalTo(OffsetDateTime.parse("2020-02-26T15:00Z")))); diff --git a/src/test/java/com/xero/api/util/ConfigurationLoader.java b/src/test/java/com/xero/api/util/ConfigurationLoader.java new file mode 100644 index 00000000..e69c746c --- /dev/null +++ b/src/test/java/com/xero/api/util/ConfigurationLoader.java @@ -0,0 +1,20 @@ +package com.xero.api.util; +import java.io.IOException; +import java.io.InputStream; +import java.util.Properties; + +public class ConfigurationLoader { + private static Properties properties = new Properties(); + + static { + try (InputStream input = ConfigurationLoader.class.getClassLoader().getResourceAsStream("config.properties")) { + properties.load(input); + } catch (IOException ex) { + ex.printStackTrace(); + } + } + + public static String getProperty(String key) { + return properties.getProperty(key); + } +} diff --git a/src/test/java/com/xero/api/util/start-prism.sh b/src/test/java/com/xero/api/util/start-prism.sh new file mode 100755 index 00000000..92b55f1d --- /dev/null +++ b/src/test/java/com/xero/api/util/start-prism.sh @@ -0,0 +1,9 @@ +prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero_accounting.yaml --host 127.0.0.1 --port 4010 & +prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero-app-store.yaml --host 127.0.0.1 --port 4011 & +prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero_assets.yaml --host 127.0.0.1 --port 4012 & +prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero_bankfeeds.yaml --host 127.0.0.1 --port 4013 & +prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero-finance.yaml --host 127.0.0.1 --port 4014 & +prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero-payroll-uk.yaml --host 127.0.0.1 --port 4015 & +prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero-payroll-nz.yaml --host 127.0.0.1 --port 4016 & +prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero-payroll-au.yaml --host 127.0.0.1 --port 4017 & +prism mock https://raw.githubusercontent.com/XeroAPI/Xero-OpenAPI/refs/heads/master/xero-projects.yaml --host 127.0.0.1 --port 4018 diff --git a/src/test/resources/config.properties b/src/test/resources/config.properties new file mode 100644 index 00000000..092114ad --- /dev/null +++ b/src/test/resources/config.properties @@ -0,0 +1,9 @@ +accounting.api.url=http://127.0.0.1:4010 +appstore.api.url=http://127.0.0.1:4011 +assets.api.url=http://127.0.0.1:4012 +bankfeeds.api.url=http://127.0.0.1:4013 +finance.api.url=http://127.0.0.1:4014 +payrolluk.api.url=http://127.0.0.1:4015 +payrollnz.api.url=http://127.0.0.1:4016 +payrollau.api.url=http://127.0.0.1:4017 +projects.api.url=http://127.0.0.1:4018