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: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,13 @@
1
1
# DocuSign Java Client Changelog
2
2
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
3
3
4
+
## [2.17.0-BETA] - Jersey2 with support of DELETE request body - 2020-08-11
5
+
### Changed
6
+
- Upgraded the HTTP client from Jersey1 to Jersey 2. This resulted in a non-breaking change but the dependency list has largely been changed. (DCM-3324)
7
+
- Added support for request body in all DELETE methods. (DCM-4454)
8
+
- Added support for version v2-20.2.02 of the DocuSign eSignature API.
9
+
- Updated the SDK release version.
10
+
4
11
## [2.16.0-BETA] - Upgrade to Jersey2 - 2020-07-02
5
12
### Changed
6
13
- Upgraded the HTTP client from Jersey1 to Jersey 2. This resulted in a non-breaking change but the dependency list has largely been changed. (DCM-3324)
Copy file name to clipboardExpand all lines: pom.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
<artifactId>docusign-esign-java</artifactId>
5
5
<packaging>jar</packaging>
6
6
<name>docusign-esign-java</name>
7
-
<version>2.16.0-BETA</version>
7
+
<version>2.17.0-BETA</version>
8
8
<description>The official DocuSign eSignature JAVA client is based on version 2 of the DocuSign REST API and provides libraries for JAVA application integration. It is recommended that you use this version of the library for new development.</description>
Copy file name to clipboardExpand all lines: src/main/java/com/docusign/esign/api/BulkEnvelopesApi.java
-13Lines changed: 0 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -314,7 +314,6 @@ public BulkRecipientsResponse getRecipients(String accountId, String envelopeId,
314
314
publicclassListOptions
315
315
{
316
316
privateStringcount = null;
317
-
privateStringinclude = null;
318
317
privateStringstartPosition = null;
319
318
/*
320
319
* The number of results to return. This can be 1 to 20.
@@ -326,16 +325,6 @@ public void setCount(String count) {
326
325
publicStringgetCount() {
327
326
returnthis.count;
328
327
}
329
-
/*
330
-
*
331
-
*/
332
-
publicvoidsetInclude(Stringinclude) {
333
-
this.include = include;
334
-
}
335
-
336
-
publicStringgetInclude() {
337
-
returnthis.include;
338
-
}
339
328
/*
340
329
* The position of the bulk envelope items in the response. This is used for repeated calls, when the number of bulk envelopes returned is too large for one return. The default value is 0.
341
330
*/
@@ -386,8 +375,6 @@ public BulkEnvelopesResponse list(String accountId, BulkEnvelopesApi.ListOptions
clientConfig.register(newLoggingFeature(java.util.logging.Logger.getLogger(LoggingFeature.DEFAULT_LOGGER_NAME), java.util.logging.Level.INFO, LoggingFeature.Verbosity.PAYLOAD_ANY, 1024*50/* Log payloads up to 50K */));
* Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field.
825
+
* @return requireInitialOnSharedChange
826
+
**/
827
+
@ApiModelProperty(value = "Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field.")
0 commit comments