Skip to content

Commit 4da4890

Browse files
RamukaRitikroot
andauthored
Version 6.4.0-v2.1-25.2.02.00 release (#299)
Co-authored-by: root <[email protected]>
1 parent d7d3baf commit 4da4890

File tree

10 files changed

+877
-12
lines changed

10 files changed

+877
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# DocuSign Java Client Changelog
22
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
33

4+
## [v6.4.0] - eSignature API v2.1-25.2.02.00 - 2025-08-11
5+
### Changed
6+
- Added support for version v2.1-25.2.02.00 of the DocuSign ESignature API.
7+
- Updated the SDK release version.
8+
49
## [v6.3.0] - eSignature API v2.1-25.2.01.00 - 2025-07-08
510
### Changed
611
- Added support for version v2.1-25.2.01.00 of the DocuSign ESignature API.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ This client SDK is provided as open source, which enables you to customize its f
5757
<dependency>
5858
<groupId>com.docusign</groupId>
5959
<artifactId>docusign-esign-java</artifactId>
60-
<version>6.3.0</version>
60+
<version>6.4.0</version>
6161
</dependency>
6262
```
6363
8. If your project is still open, restart Eclipse.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>docusign-esign-java</artifactId>
66
<packaging>jar</packaging>
77
<name>docusign-esign-java</name>
8-
<version>6.3.0</version>
8+
<version>6.4.0</version>
99
<url>https://developers.docusign.com</url>
1010
<description>The official Docusign eSignature JAVA client is based on version 2.1 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>
1111

src/main/java/com/docusign/esign/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public ApiClient() {
9393
String javaVersion = System.getProperty("java.version");
9494

9595
// Set default User-Agent.
96-
setUserAgent("Swagger-Codegen/v2.1/6.3.0/Java/" + javaVersion);
96+
setUserAgent("Swagger-Codegen/v2.1/6.4.0/Java/" + javaVersion);
9797

9898
// Setup authentications (key: authentication name, value: authentication).
9999
authentications = new HashMap<String, Authentication>();

src/main/java/com/docusign/esign/model/AccountSettingsInformation.java

Lines changed: 195 additions & 3 deletions
Large diffs are not rendered by default.

src/main/java/com/docusign/esign/model/ConnectCustomConfiguration.java

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ public class ConnectCustomConfiguration implements Serializable {
100100
@JsonProperty("password")
101101
private String password = null;
102102

103+
@JsonProperty("pausePublish")
104+
private String pausePublish = null;
105+
103106
@JsonProperty("recipientEvents")
104107
private java.util.List<String> recipientEvents = null;
105108

@@ -917,6 +920,33 @@ public void setPassword(String password) {
917920
}
918921

919922

923+
/**
924+
* pausePublish.
925+
*
926+
* @return ConnectCustomConfiguration
927+
**/
928+
public ConnectCustomConfiguration pausePublish(String pausePublish) {
929+
this.pausePublish = pausePublish;
930+
return this;
931+
}
932+
933+
/**
934+
* .
935+
* @return pausePublish
936+
**/
937+
@Schema(description = "")
938+
public String getPausePublish() {
939+
return pausePublish;
940+
}
941+
942+
/**
943+
* setPausePublish.
944+
**/
945+
public void setPausePublish(String pausePublish) {
946+
this.pausePublish = pausePublish;
947+
}
948+
949+
920950
/**
921951
* recipientEvents.
922952
*
@@ -1442,6 +1472,7 @@ public boolean equals(java.lang.Object o) {
14421472
Objects.equals(this.integratorManaged, connectCustomConfiguration.integratorManaged) &&
14431473
Objects.equals(this.name, connectCustomConfiguration.name) &&
14441474
Objects.equals(this.password, connectCustomConfiguration.password) &&
1475+
Objects.equals(this.pausePublish, connectCustomConfiguration.pausePublish) &&
14451476
Objects.equals(this.recipientEvents, connectCustomConfiguration.recipientEvents) &&
14461477
Objects.equals(this.requireMutualTls, connectCustomConfiguration.requireMutualTls) &&
14471478
Objects.equals(this.requiresAcknowledgement, connectCustomConfiguration.requiresAcknowledgement) &&
@@ -1465,7 +1496,7 @@ public boolean equals(java.lang.Object o) {
14651496
*/
14661497
@Override
14671498
public int hashCode() {
1468-
return Objects.hash(allowEnvelopePublish, allowSalesforcePublish, allUsers, allUsersExcept, configurationType, connectId, deliveryMode, disabledBy, enableLog, envelopeEvents, eventData, events, externalFolderId, externalFolderLabel, groupIds, includeCertificateOfCompletion, includeCertSoapHeader, includeDocumentFields, includeDocuments, includeEnvelopeVoidReason, includeHMAC, includeOAuth, includeSenderAccountasCustomField, includeTimeZoneInformation, integratorManaged, name, password, recipientEvents, requireMutualTls, requiresAcknowledgement, salesforceApiVersion, salesforceAuthcode, salesforceCallBackUrl, salesforceDocumentsAsContentFiles, senderOverride, senderSelectableItems, sfObjects, signMessageWithX509Certificate, soapNamespace, urlToPublishTo, userIds, userName, useSoapInterface);
1499+
return Objects.hash(allowEnvelopePublish, allowSalesforcePublish, allUsers, allUsersExcept, configurationType, connectId, deliveryMode, disabledBy, enableLog, envelopeEvents, eventData, events, externalFolderId, externalFolderLabel, groupIds, includeCertificateOfCompletion, includeCertSoapHeader, includeDocumentFields, includeDocuments, includeEnvelopeVoidReason, includeHMAC, includeOAuth, includeSenderAccountasCustomField, includeTimeZoneInformation, integratorManaged, name, password, pausePublish, recipientEvents, requireMutualTls, requiresAcknowledgement, salesforceApiVersion, salesforceAuthcode, salesforceCallBackUrl, salesforceDocumentsAsContentFiles, senderOverride, senderSelectableItems, sfObjects, signMessageWithX509Certificate, soapNamespace, urlToPublishTo, userIds, userName, useSoapInterface);
14691500
}
14701501

14711502

@@ -1504,6 +1535,7 @@ public String toString() {
15041535
sb.append(" integratorManaged: ").append(toIndentedString(integratorManaged)).append("\n");
15051536
sb.append(" name: ").append(toIndentedString(name)).append("\n");
15061537
sb.append(" password: ").append(toIndentedString(password)).append("\n");
1538+
sb.append(" pausePublish: ").append(toIndentedString(pausePublish)).append("\n");
15071539
sb.append(" recipientEvents: ").append(toIndentedString(recipientEvents)).append("\n");
15081540
sb.append(" requireMutualTls: ").append(toIndentedString(requireMutualTls)).append("\n");
15091541
sb.append(" requiresAcknowledgement: ").append(toIndentedString(requiresAcknowledgement)).append("\n");

src/main/java/com/docusign/esign/model/ConnectOAuthConfig.java

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class ConnectOAuthConfig implements Serializable {
2626
private String clientSecret = null;
2727

2828
@JsonProperty("customParameters")
29-
private String customParameters = null;
29+
private java.util.Map<String, String> customParameters = null;
3030

3131
@JsonProperty("scope")
3232
private String scope = null;
@@ -118,24 +118,37 @@ public void setClientSecret(String clientSecret) {
118118
*
119119
* @return ConnectOAuthConfig
120120
**/
121-
public ConnectOAuthConfig customParameters(String customParameters) {
121+
public ConnectOAuthConfig customParameters(java.util.Map<String, String> customParameters) {
122122
this.customParameters = customParameters;
123123
return this;
124124
}
125125

126+
/**
127+
* putCustomParametersItem.
128+
*
129+
* @return ConnectOAuthConfig
130+
**/
131+
public ConnectOAuthConfig putCustomParametersItem(String key, String customParametersItem) {
132+
if (this.customParameters == null) {
133+
this.customParameters = new java.util.HashMap<>();
134+
}
135+
this.customParameters.put(key, customParametersItem);
136+
return this;
137+
}
138+
126139
/**
127140
* .
128141
* @return customParameters
129142
**/
130143
@Schema(description = "")
131-
public String getCustomParameters() {
144+
public java.util.Map<String, String> getCustomParameters() {
132145
return customParameters;
133146
}
134147

135148
/**
136149
* setCustomParameters.
137150
**/
138-
public void setCustomParameters(String customParameters) {
151+
public void setCustomParameters(java.util.Map<String, String> customParameters) {
139152
this.customParameters = customParameters;
140153
}
141154

Lines changed: 165 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
1+
package com.docusign.esign.model;
2+
3+
import java.util.Objects;
4+
import java.util.Arrays;
5+
import com.fasterxml.jackson.annotation.JsonProperty;
6+
import com.fasterxml.jackson.annotation.JsonCreator;
7+
import com.fasterxml.jackson.annotation.JsonValue;
8+
import io.swagger.v3.oas.annotations.media.Schema;
9+
import java.io.Serializable;
10+
11+
/**
12+
* TemplateViewRecipientSettings.
13+
*
14+
*/
15+
16+
public class TemplateViewRecipientSettings implements Serializable {
17+
private static final long serialVersionUID = 1L;
18+
19+
@JsonProperty("showContactsList")
20+
private String showContactsList = null;
21+
22+
@JsonProperty("showEditMessage")
23+
private String showEditMessage = null;
24+
25+
@JsonProperty("showEditRecipients")
26+
private String showEditRecipients = null;
27+
28+
29+
/**
30+
* showContactsList.
31+
*
32+
* @return TemplateViewRecipientSettings
33+
**/
34+
public TemplateViewRecipientSettings showContactsList(String showContactsList) {
35+
this.showContactsList = showContactsList;
36+
return this;
37+
}
38+
39+
/**
40+
* .
41+
* @return showContactsList
42+
**/
43+
@Schema(description = "")
44+
public String getShowContactsList() {
45+
return showContactsList;
46+
}
47+
48+
/**
49+
* setShowContactsList.
50+
**/
51+
public void setShowContactsList(String showContactsList) {
52+
this.showContactsList = showContactsList;
53+
}
54+
55+
56+
/**
57+
* showEditMessage.
58+
*
59+
* @return TemplateViewRecipientSettings
60+
**/
61+
public TemplateViewRecipientSettings showEditMessage(String showEditMessage) {
62+
this.showEditMessage = showEditMessage;
63+
return this;
64+
}
65+
66+
/**
67+
* .
68+
* @return showEditMessage
69+
**/
70+
@Schema(description = "")
71+
public String getShowEditMessage() {
72+
return showEditMessage;
73+
}
74+
75+
/**
76+
* setShowEditMessage.
77+
**/
78+
public void setShowEditMessage(String showEditMessage) {
79+
this.showEditMessage = showEditMessage;
80+
}
81+
82+
83+
/**
84+
* showEditRecipients.
85+
*
86+
* @return TemplateViewRecipientSettings
87+
**/
88+
public TemplateViewRecipientSettings showEditRecipients(String showEditRecipients) {
89+
this.showEditRecipients = showEditRecipients;
90+
return this;
91+
}
92+
93+
/**
94+
* .
95+
* @return showEditRecipients
96+
**/
97+
@Schema(description = "")
98+
public String getShowEditRecipients() {
99+
return showEditRecipients;
100+
}
101+
102+
/**
103+
* setShowEditRecipients.
104+
**/
105+
public void setShowEditRecipients(String showEditRecipients) {
106+
this.showEditRecipients = showEditRecipients;
107+
}
108+
109+
110+
/**
111+
* Compares objects.
112+
*
113+
* @return true or false depending on comparison result.
114+
*/
115+
@Override
116+
public boolean equals(java.lang.Object o) {
117+
if (this == o) {
118+
return true;
119+
}
120+
if (o == null || getClass() != o.getClass()) {
121+
return false;
122+
}
123+
TemplateViewRecipientSettings templateViewRecipientSettings = (TemplateViewRecipientSettings) o;
124+
return Objects.equals(this.showContactsList, templateViewRecipientSettings.showContactsList) &&
125+
Objects.equals(this.showEditMessage, templateViewRecipientSettings.showEditMessage) &&
126+
Objects.equals(this.showEditRecipients, templateViewRecipientSettings.showEditRecipients);
127+
}
128+
129+
/**
130+
* Returns the HashCode.
131+
*/
132+
@Override
133+
public int hashCode() {
134+
return Objects.hash(showContactsList, showEditMessage, showEditRecipients);
135+
}
136+
137+
138+
/**
139+
* Converts the given object to string.
140+
*/
141+
@Override
142+
public String toString() {
143+
StringBuilder sb = new StringBuilder();
144+
sb.append("class TemplateViewRecipientSettings {\n");
145+
146+
sb.append(" showContactsList: ").append(toIndentedString(showContactsList)).append("\n");
147+
sb.append(" showEditMessage: ").append(toIndentedString(showEditMessage)).append("\n");
148+
sb.append(" showEditRecipients: ").append(toIndentedString(showEditRecipients)).append("\n");
149+
sb.append("}");
150+
return sb.toString();
151+
}
152+
153+
/**
154+
* Convert the given object to string with each line indented by 4 spaces
155+
* (except the first line).
156+
*/
157+
private String toIndentedString(java.lang.Object o) {
158+
if (o == null) {
159+
return "null";
160+
}
161+
return o.toString().replace("\n", "\n ");
162+
}
163+
164+
}
165+

0 commit comments

Comments
 (0)