You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Version 4.x and higher of Xero Java SDK only supports OAuth2 authentication and
10
10
* fixed asset
11
11
* projects
12
12
* payroll au
13
-
* payroll uk - beta
13
+
* payroll uk
14
14
15
15
Coming soon
16
16
* payroll nz
@@ -178,7 +178,6 @@ try {
178
178
We've replace a specific logging plugin (org.apache.logging.log4j) with a logging facade org.slf4j. With version 4.x we'll use SLF4J and allow you to plug in the logging library of your choice at deployment time. This [blog post](https://www.baeldung.com/slf4j-with-log4j2-logback) explains how to add log4j2 for logging. To configure, add a log4j.properties file to the Resources directory.
179
179
180
180
181
-
182
181
## Looking for version 3.x of the SDK?
183
182
Codebase, samples and setup instructions located in [java-3.x branch](https://github.com/XeroAPI/Xero-Java/tree/java-3.x).
@@ -614,7 +614,7 @@ public HttpResponse getTaskForHttpResponse(String accessToken, String xeroTenan
614
614
* @param projectId You can specify an individual project by appending the projectId to the endpoint
615
615
* @param page Set to 1 by default. The requested number of the page in paged response - Must be a number greater than 0.
616
616
* @param pageSize Optional, it is set to 50 by default. The number of items to return per page in a paged response - Must be a number between 1 and 500.
617
-
* @param taskIds taskIds Search for all tasks that match a comma separated list of taskIds, i.e. GET https://.../tasks?taskIds={taskId},{taskId}
617
+
* @param taskIds taskIdsSearch for all tasks that match a comma separated list of taskIds, i.e. GET https://.../tasks?taskIds={taskId},{taskId}
618
618
* @param accessToken Authorization token for user set in header of each request
619
619
* @return Tasks
620
620
* @throws IOException if an error occurs while attempting to invoke the API
@@ -715,7 +715,7 @@ public HttpResponse getTasksForHttpResponse(String accessToken, String xeroTena
715
715
* @param contactId Finds all time entries for this contact identifier.
716
716
* @param page Set to 1 by default. The requested number of the page in paged response - Must be a number greater than 0.
717
717
* @param pageSize Optional, it is set to 50 by default. The number of items to return per page in a paged response - Must be a number between 1 and 500.
718
-
* @param states Comma-separated list of states to find. Will find all time entries that are in the status of whatever’s specified.
718
+
* @param states Comma-separated list of states to find. Will find all time entries that are in the status of whatever’s specified.
719
719
* @param isChargeable Finds all time entries which relate to tasks with the charge type `TIME` or `FIXED`.
720
720
* @param dateAfterUtc ISO 8601 UTC date. Finds all time entries on or after this date filtered on the `dateUtc` field.
721
721
* @param dateBeforeUtc ISO 8601 UTC date. Finds all time entries on or before this date filtered on the `dateUtc` field.
0 commit comments