Skip to content

Commit a016686

Browse files
Version 2.21.0-RC1-v2-21.1.02.00 release (#193)
Co-authored-by: DevCenter-DocuSign <[email protected]>
1 parent 5394c76 commit a016686

File tree

10 files changed

+18
-555
lines changed

10 files changed

+18
-555
lines changed

CHANGELOG.md

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

4+
## [v2.21.0-RC1] - eSignature API v2-21.1.02.00 - 2021-05-24
5+
### Removed
6+
- Removed methods `getAccountSettingsExport`,`getSealProviders` from Accounts.
7+
- Removed methods `createConnectSecret`,`deleteConnectSecret`,`generateConnectSecret`,`getConnectSecrets` from Connect.
8+
- Removed methods `completeSignHash`,`getUserInfo`,`healthCheck`,`signHashSessionInfo`,`updateTransaction` from TrustServiceProviders.
9+
- Removed method `getUserListExport` from Users.
10+
### Changed
11+
- Added support for version v2-21.1.02.00 of the DocuSign eSignature API.
12+
- Updated the SDK release version.
13+
414
## [v2.20.0] - eSignature API v2-21.1.01.03 - 2021-04-26
515
### Added
616
- Added new method `deleteConnectSecret` to connect.
7-
### Changed
17+
### Changed
818
- Added support for version v2-21.1.01.03 of the DocuSign eSignature API.
919
- Updated the SDK release version.
1020

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This SDK is provided as open source, which enables you to customize its function
2929
<dependency>
3030
<groupId>com.docusign</groupId>
3131
<artifactId>docusign-esign-java</artifactId>
32-
<version>2.20.0</version>
32+
<version>2.21.0-RC1</version>
3333
</dependency>
3434
```
3535
8. If your project is still open, restart Eclipse.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.docusign'
5-
version = '2.20.0'
5+
version = '2.21.0-RC1'
66

77
buildscript {
88
repositories {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>docusign-esign-java</artifactId>
55
<packaging>jar</packaging>
66
<name>docusign-esign-java</name>
7-
<version>2.20.0</version>
7+
<version>2.21.0-RC1</version>
88
<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>
99
<url>https://developers.docusign.com</url>
1010

src/main/java/com/docusign/esign/api/AccountsApi.java

Lines changed: 0 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -908,59 +908,6 @@ public AccountInformation getAccountInformation(String accountId, AccountsApi.Ge
908908
return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
909909
}
910910

911-
/**
912-
* Retrieves an account settings comparison.
913-
*
914-
* @param organizationId (required)
915-
* @param resultId (required)
916-
* @throws ApiException if fails to make API call
917-
*/
918-
public void getAccountSettingsExport(String organizationId, String resultId) throws ApiException {
919-
Object localVarPostBody = "{}";
920-
921-
// verify the required parameter 'organizationId' is set
922-
if (organizationId == null) {
923-
throw new ApiException(400, "Missing the required parameter 'organizationId' when calling getAccountSettingsExport");
924-
}
925-
926-
// verify the required parameter 'resultId' is set
927-
if (resultId == null) {
928-
throw new ApiException(400, "Missing the required parameter 'resultId' when calling getAccountSettingsExport");
929-
}
930-
931-
// create path and map variables
932-
String localVarPath = "/v2/organization_exports/{organizationId}/account_settings/{resultId}"
933-
.replaceAll("\\{" + "organizationId" + "\\}", apiClient.escapeString(organizationId.toString()))
934-
.replaceAll("\\{" + "resultId" + "\\}", apiClient.escapeString(resultId.toString()));
935-
936-
// query params
937-
java.util.List<Pair> localVarQueryParams = new java.util.ArrayList<Pair>();
938-
java.util.List<Pair> localVarCollectionQueryParams = new java.util.ArrayList<Pair>();
939-
java.util.Map<String, String> localVarHeaderParams = new java.util.HashMap<String, String>();
940-
java.util.Map<String, Object> localVarFormParams = new java.util.HashMap<String, Object>();
941-
942-
943-
944-
945-
946-
947-
948-
final String[] localVarAccepts = {
949-
"application/json"
950-
};
951-
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
952-
953-
final String[] localVarContentTypes = {
954-
955-
};
956-
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
957-
958-
String[] localVarAuthNames = new String[] { "docusignAccessCode" };
959-
960-
961-
apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, null);
962-
}
963-
964911
/**
965912
* Returns tab settings list for specified account
966913
*
@@ -1893,53 +1840,6 @@ public ProvisioningInformation getProvisioning() throws ApiException {
18931840
return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
18941841
}
18951842

1896-
/**
1897-
* Returns Account available seals for specified account.
1898-
*
1899-
* @param accountId The external account number (int) or account ID Guid. (required)
1900-
* @return AccountSeals
1901-
* @throws ApiException if fails to make API call
1902-
*/
1903-
public AccountSeals getSealProviders(String accountId) throws ApiException {
1904-
Object localVarPostBody = "{}";
1905-
1906-
// verify the required parameter 'accountId' is set
1907-
if (accountId == null) {
1908-
throw new ApiException(400, "Missing the required parameter 'accountId' when calling getSealProviders");
1909-
}
1910-
1911-
// create path and map variables
1912-
String localVarPath = "/v2/accounts/{accountId}/seals"
1913-
.replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString()));
1914-
1915-
// query params
1916-
java.util.List<Pair> localVarQueryParams = new java.util.ArrayList<Pair>();
1917-
java.util.List<Pair> localVarCollectionQueryParams = new java.util.ArrayList<Pair>();
1918-
java.util.Map<String, String> localVarHeaderParams = new java.util.HashMap<String, String>();
1919-
java.util.Map<String, Object> localVarFormParams = new java.util.HashMap<String, Object>();
1920-
1921-
1922-
1923-
1924-
1925-
1926-
1927-
final String[] localVarAccepts = {
1928-
"application/json"
1929-
};
1930-
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
1931-
1932-
final String[] localVarContentTypes = {
1933-
1934-
};
1935-
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
1936-
1937-
String[] localVarAuthNames = new String[] { "docusignAccessCode" };
1938-
1939-
GenericType<AccountSeals> localVarReturnType = new GenericType<AccountSeals>() {};
1940-
return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
1941-
}
1942-
19431843
/**
19441844
* Gets list of supported languages for recipient language setting.
19451845
*

src/main/java/com/docusign/esign/api/ConnectApi.java

Lines changed: 0 additions & 191 deletions
Original file line numberDiff line numberDiff line change
@@ -79,52 +79,6 @@ public ConnectCustomConfiguration createConfiguration(String accountId, ConnectC
7979
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
8080
}
8181

82-
/**
83-
* Generates a new connect HMAC Secret.
84-
*
85-
* @param accountId The external account number (int) or account ID Guid. (required)
86-
* @throws ApiException if fails to make API call
87-
*/
88-
public void createConnectSecret(String accountId) throws ApiException {
89-
Object localVarPostBody = "{}";
90-
91-
// verify the required parameter 'accountId' is set
92-
if (accountId == null) {
93-
throw new ApiException(400, "Missing the required parameter 'accountId' when calling createConnectSecret");
94-
}
95-
96-
// create path and map variables
97-
String localVarPath = "/v2/accounts/{accountId}/connect/secret"
98-
.replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString()));
99-
100-
// query params
101-
java.util.List<Pair> localVarQueryParams = new java.util.ArrayList<Pair>();
102-
java.util.List<Pair> localVarCollectionQueryParams = new java.util.ArrayList<Pair>();
103-
java.util.Map<String, String> localVarHeaderParams = new java.util.HashMap<String, String>();
104-
java.util.Map<String, Object> localVarFormParams = new java.util.HashMap<String, Object>();
105-
106-
107-
108-
109-
110-
111-
112-
final String[] localVarAccepts = {
113-
"application/json"
114-
};
115-
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
116-
117-
final String[] localVarContentTypes = {
118-
119-
};
120-
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
121-
122-
String[] localVarAuthNames = new String[] { "docusignAccessCode" };
123-
124-
125-
apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, null);
126-
}
127-
12882
/**
12983
* Deletes the specified connect configuration.
13084
* Deletes the specified DocuSign Connect configuration. ###### Note: Connect must be enabled for your account to use this function.
@@ -162,59 +116,6 @@ public void deleteConfiguration(String accountId, String connectId) throws ApiEx
162116

163117

164118

165-
final String[] localVarAccepts = {
166-
"application/json"
167-
};
168-
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
169-
170-
final String[] localVarContentTypes = {
171-
172-
};
173-
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
174-
175-
String[] localVarAuthNames = new String[] { "docusignAccessCode" };
176-
177-
178-
apiClient.invokeAPI(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, null);
179-
}
180-
181-
/**
182-
* Delete the connect HMAC Secret for AccountID
183-
*
184-
* @param accountId The external account number (int) or account ID Guid. (required)
185-
* @param keyId (required)
186-
* @throws ApiException if fails to make API call
187-
*/
188-
public void deleteConnectSecret(String accountId, String keyId) throws ApiException {
189-
Object localVarPostBody = "{}";
190-
191-
// verify the required parameter 'accountId' is set
192-
if (accountId == null) {
193-
throw new ApiException(400, "Missing the required parameter 'accountId' when calling deleteConnectSecret");
194-
}
195-
196-
// verify the required parameter 'keyId' is set
197-
if (keyId == null) {
198-
throw new ApiException(400, "Missing the required parameter 'keyId' when calling deleteConnectSecret");
199-
}
200-
201-
// create path and map variables
202-
String localVarPath = "/v2/accounts/{accountId}/connect/secret/{keyId}"
203-
.replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString()))
204-
.replaceAll("\\{" + "keyId" + "\\}", apiClient.escapeString(keyId.toString()));
205-
206-
// query params
207-
java.util.List<Pair> localVarQueryParams = new java.util.ArrayList<Pair>();
208-
java.util.List<Pair> localVarCollectionQueryParams = new java.util.ArrayList<Pair>();
209-
java.util.Map<String, String> localVarHeaderParams = new java.util.HashMap<String, String>();
210-
java.util.Map<String, Object> localVarFormParams = new java.util.HashMap<String, Object>();
211-
212-
213-
214-
215-
216-
217-
218119
final String[] localVarAccepts = {
219120
"application/json"
220121
};
@@ -431,52 +332,6 @@ public MobileNotifierConfigurationInformation deleteMobileNotifiers(String accou
431332
return apiClient.invokeAPI(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
432333
}
433334

434-
/**
435-
* Generates a new connect HMAC Secret.
436-
*
437-
* @param accountId The external account number (int) or account ID Guid. (required)
438-
* @throws ApiException if fails to make API call
439-
*/
440-
public void generateConnectSecret(String accountId) throws ApiException {
441-
Object localVarPostBody = "{}";
442-
443-
// verify the required parameter 'accountId' is set
444-
if (accountId == null) {
445-
throw new ApiException(400, "Missing the required parameter 'accountId' when calling generateConnectSecret");
446-
}
447-
448-
// create path and map variables
449-
String localVarPath = "/v2/accounts/{accountId}/connect/secret"
450-
.replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString()));
451-
452-
// query params
453-
java.util.List<Pair> localVarQueryParams = new java.util.ArrayList<Pair>();
454-
java.util.List<Pair> localVarCollectionQueryParams = new java.util.ArrayList<Pair>();
455-
java.util.Map<String, String> localVarHeaderParams = new java.util.HashMap<String, String>();
456-
java.util.Map<String, Object> localVarFormParams = new java.util.HashMap<String, Object>();
457-
458-
459-
460-
461-
462-
463-
464-
final String[] localVarAccepts = {
465-
"application/json"
466-
};
467-
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
468-
469-
final String[] localVarContentTypes = {
470-
471-
};
472-
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
473-
474-
String[] localVarAuthNames = new String[] { "docusignAccessCode" };
475-
476-
477-
apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, null);
478-
}
479-
480335
/**
481336
* Get a Connect Configuration Information
482337
* Retrieves the information for the specified DocuSign Connect configuration. ###### Note: Connect must be enabled for your account to use this function.
@@ -530,52 +385,6 @@ public ConnectConfigResults getConfiguration(String accountId, String connectId)
530385
GenericType<ConnectConfigResults> localVarReturnType = new GenericType<ConnectConfigResults>() {};
531386
return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
532387
}
533-
534-
/**
535-
* Get the connect HMAC Secrets for AccountID
536-
*
537-
* @param accountId The external account number (int) or account ID Guid. (required)
538-
* @throws ApiException if fails to make API call
539-
*/
540-
public void getConnectSecrets(String accountId) throws ApiException {
541-
Object localVarPostBody = "{}";
542-
543-
// verify the required parameter 'accountId' is set
544-
if (accountId == null) {
545-
throw new ApiException(400, "Missing the required parameter 'accountId' when calling getConnectSecrets");
546-
}
547-
548-
// create path and map variables
549-
String localVarPath = "/v2/accounts/{accountId}/connect/secrets"
550-
.replaceAll("\\{" + "accountId" + "\\}", apiClient.escapeString(accountId.toString()));
551-
552-
// query params
553-
java.util.List<Pair> localVarQueryParams = new java.util.ArrayList<Pair>();
554-
java.util.List<Pair> localVarCollectionQueryParams = new java.util.ArrayList<Pair>();
555-
java.util.Map<String, String> localVarHeaderParams = new java.util.HashMap<String, String>();
556-
java.util.Map<String, Object> localVarFormParams = new java.util.HashMap<String, Object>();
557-
558-
559-
560-
561-
562-
563-
564-
final String[] localVarAccepts = {
565-
"application/json"
566-
};
567-
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
568-
569-
final String[] localVarContentTypes = {
570-
571-
};
572-
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
573-
574-
String[] localVarAuthNames = new String[] { "docusignAccessCode" };
575-
576-
577-
apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, null);
578-
}
579388
/// <summary>
580389
/// Get the specified Connect log entry. Retrieves the specified Connect log entry for your account. ###### Note: The &#x60;enableLog&#x60; setting in the Connect configuration must be set to true to enable logging. If logging is not enabled, then no log entries are recorded.
581390
/// </summary>

src/main/java/com/docusign/esign/api/EnvelopesApi.java

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

0 commit comments

Comments
 (0)