Skip to content

Commit edee396

Browse files
authored
Merge pull request #135 from docusign/DEVDOCS-14193
updating branding
2 parents bcfcacc + 22e1b69 commit edee396

File tree

8 files changed

+32
-32
lines changed

8 files changed

+32
-32
lines changed

Quick_ACG/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
<targetPath>${basedir}/src/main/resources/public/assets</targetPath>
155155
<directory>../src/main/resources/public/assets</directory>
156156
<includes>
157-
<include>favicon.ico</include>
157+
<include>favicon.png</include>
158158
<include>css.css</include>
159159
</includes>
160160
</resource>

README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
### GitHub repo: [code-examples-java](./README.md)
44

5-
This GitHub repo includes code examples for the DocuSign Admin API, Click API, eSignature REST API, Monitor API, and Rooms API.
5+
This GitHub repo includes code examples for the Docusign Admin API, Click API, eSignature REST API, Monitor API, and Rooms API.
66

77

88
## Introduction
99

1010
This repo is a Java Spring Boot application that supports the following authentication workflows:
1111

12-
* Authentication with DocuSign via [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode).
12+
* Authentication with Docusign via [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode).
1313
When the token expires, the user is asked to re-authenticate. The refresh token is not used.
1414

15-
* Authentication with DocuSign via [JSON Web Token (JWT) Grant](https://developers.docusign.com/platform/auth/jwt/).
15+
* Authentication with Docusign via [JSON Web Token (JWT) Grant](https://developers.docusign.com/platform/auth/jwt/).
1616
When the token expires, it updates automatically.
1717

1818
The [Spring Boot security Oauth2 boot autoconfigure package](https://github.com/spring-projects/spring-security-oauth2-boot/blob/master/spring-security-oauth2-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/resource/UserInfoRestTemplateCustomizer.java) is used for authentication.
@@ -24,57 +24,57 @@ The OAuth library is used in the file [WebSecurityConfig.java](https://github.co
2424

2525
For more information about the scopes used for obtaining authorization to use the eSignature API, see [Required scopes](https://developers.docusign.com/docs/esign-rest-api/esign101/auth#required-scopes).
2626

27-
For a list of code examples that use the eSignature API, see the [How-to guides overview](https://developers.docusign.com/docs/esign-rest-api/how-to/) on the DocuSign Developer Center.
27+
For a list of code examples that use the eSignature API, see the [How-to guides overview](https://developers.docusign.com/docs/esign-rest-api/how-to/) on the Docusign Developer Center.
2828

2929

3030
## Rooms API
3131

32-
**Note:** To use the Rooms API, you must also [create your Rooms developer account](https://developers.docusign.com/docs/rooms-api/rooms101/create-account). Examples 4 and 6 require that you have the DocuSign Forms feature enabled in your Rooms for Real Estate account.
32+
**Note:** To use the Rooms API, you must also [create your Rooms developer account](https://developers.docusign.com/docs/rooms-api/rooms101/create-account). Examples 4 and 6 require that you have the Docusign Forms feature enabled in your Rooms for Real Estate account.
3333
For more information about the scopes used for obtaining authorization to use the Rooms API, see [Required scopes](https://developers.docusign.com/docs/rooms-api/rooms101/auth/).
3434

35-
For a list of code examples that use the Rooms API, see the [How-to guides overview](https://developers.docusign.com/docs/rooms-api/how-to/) on the DocuSign Developer Center.
35+
For a list of code examples that use the Rooms API, see the [How-to guides overview](https://developers.docusign.com/docs/rooms-api/how-to/) on the Docusign Developer Center.
3636

3737

3838
## Click API
3939
For more information about the scopes used for obtaining authorization to use the Click API, see [Required scopes](https://developers.docusign.com/docs/click-api/click101/auth/#required-scopes)
4040

41-
For a list of code examples that use the Click API, see the [How-to guides overview](https://developers.docusign.com/docs/click-api/how-to/) on the DocuSign Developer Center.
41+
For a list of code examples that use the Click API, see the [How-to guides overview](https://developers.docusign.com/docs/click-api/how-to/) on the Docusign Developer Center.
4242

4343

4444
## Monitor API
4545

46-
**Note:** To use the Monitor API, you must also [enable DocuSign Monitor for your organization](https://developers.docusign.com/docs/monitor-api/how-to/enable-monitor/).
46+
**Note:** To use the Monitor API, you must also [enable Docusign Monitor for your organization](https://developers.docusign.com/docs/monitor-api/how-to/enable-monitor/).
4747

4848
For information about the scopes used for obtaining authorization to use the Monitor API, see the [scopes section](https://developers.docusign.com/docs/monitor-api/monitor101/auth/).
4949

50-
For a list of code examples that use the Monitor API, see the [How-to guides overview](https://developers.docusign.com/docs/monitor-api/how-to/) on the DocuSign Developer Center.
50+
For a list of code examples that use the Monitor API, see the [How-to guides overview](https://developers.docusign.com/docs/monitor-api/how-to/) on the Docusign Developer Center.
5151

5252

5353
## Admin API
5454

55-
**Note:** To use the Admin API, you must [create an organization](https://support.docusign.com/en/guides/org-admin-guide-create-org) in your DocuSign developer account. Also, to run the DocuSign CLM code example, [CLM must be enabled for your organization](https://support.docusign.com/en/articles/DocuSign-and-SpringCM).
55+
**Note:** To use the Admin API, you must [create an organization](https://support.docusign.com/en/guides/org-admin-guide-create-org) in your Docusign developer account. Also, to run the Docusign CLM code example, [CLM must be enabled for your organization](https://support.docusign.com/en/articles/DocuSign-and-SpringCM).
5656

5757
For information about the scopes used for obtaining authorization to use the Admin API, see the [scopes section](https://developers.docusign.com/docs/admin-api/admin101/auth/).
5858

59-
For a list of code examples that use the Admin API, see the [How-to guides overview](https://developers.docusign.com/docs/admin-api/how-to/) on the DocuSign Developer Center.
59+
For a list of code examples that use the Admin API, see the [How-to guides overview](https://developers.docusign.com/docs/admin-api/how-to/) on the Docusign Developer Center.
6060

6161

6262
## Web Forms API
6363

64-
The Web Forms API is available in all developer accounts, but only in certain production account plans. Contact [DocuSign Support](https://support.docusign.com/) or your account manager to find out whether the Web Forms API is available for your production account plan.
64+
The Web Forms API is available in all developer accounts, but only in certain production account plans. Contact [Docusign Support](https://support.docusign.com/) or your account manager to find out whether the Web Forms API is available for your production account plan.
6565

6666
For more information about the scopes used for obtaining authorization to use the Rooms API, see [Required scopes](https://developers.docusign.com/docs/web-forms-api/plan-integration/authentication/).
6767

68-
For a list of code examples that use the Web Forms API, see the [How-to guides overview](https://developers.docusign.com/docs/web-forms-api/how-to/) on the DocuSign Developer Center.
68+
For a list of code examples that use the Web Forms API, see the [How-to guides overview](https://developers.docusign.com/docs/web-forms-api/how-to/) on the Docusign Developer Center.
6969

7070

7171
## Installation
7272

7373
### Prerequisites
74-
**Note:** If you downloaded this code using [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/) from the DocuSign Developer Center, skip items 1 and 2 as they were automatically performed for you.
74+
**Note:** If you downloaded this code using [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/) from the Docusign Developer Center, skip items 1 and 2 as they were automatically performed for you.
7575

76-
1. A free [DocuSign developer account](https://go.docusign.com/o/sandbox/); create one if you don't already have one.
77-
1. A DocuSign app and integration key that is configured to use either [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) or [JWT Grant](https://developers.docusign.com/platform/auth/jwt/) authentication.
76+
1. A free [Docusign developer account](https://go.docusign.com/o/sandbox/); create one if you don't already have one.
77+
1. A Docusign app and integration key that is configured to use either [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) or [JWT Grant](https://developers.docusign.com/platform/auth/jwt/) authentication.
7878

7979
This [video](https://www.youtube.com/watch?v=eiRI4fe5HgM) demonstrates how to obtain an integration key.
8080

@@ -103,7 +103,7 @@ For a list of code examples that use the Web Forms API, see the [How-to guides o
103103

104104
### Installation steps
105105

106-
**Note:** If you downloaded this code using [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/) from the DocuSign Developer Center, skip step 4 as it was automatically performed for you.
106+
**Note:** If you downloaded this code using [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/) from the Docusign Developer Center, skip step 4 as it was automatically performed for you.
107107

108108
1. Extract the Quickstart ZIP file or download or clone the code-examples-java repository.
109109
1. In your command-line environment, switch to the :
@@ -142,7 +142,7 @@ For Windows:
142142

143143
### Installation steps for JWT Grant authentication
144144

145-
**Note:** If you downloaded this code using [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/) from the DocuSign Developer Center, skip step 4 as it was automatically performed for you.
145+
**Note:** If you downloaded this code using [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/) from the Docusign Developer Center, skip step 4 as it was automatically performed for you.
146146
Also, in order to select JSON Web Token authentication in the launcher, in src/main/resources/application.json, change the `quickstart` setting to `false`.
147147

148148
1. Extract the Quickstart ZIP file or download or clone the code-examples-java repository.
@@ -158,7 +158,7 @@ Also, in order to select JSON Web Token authentication in the launcher, in src/m
158158
1. Run the launcher: `mvn exec:java -Dexec.mainClass="com.docusign.jwtconsoleapp.JWTConsoleApp"` (`mvn exec:java -D"exec.mainClass"="com.docusign.jwtconsoleapp.JWTConsoleApp"`)
159159
The launcher automatically opens.
160160
1. On the black navigation bar, select **Login**.
161-
1. From the picklist, select **JSON Web Token (JWT) grant** > **Authenticate with DocuSign**.
161+
1. From the picklist, select **JSON Web Token (JWT) grant** > **Authenticate with Docusign**.
162162
1. When prompted, log in to your DocuSign developer account. If this is your first time using the app, select **ACCEPT** at the consent window.
163163
3. Select your desired code example.
164164

@@ -167,7 +167,7 @@ Also, in order to select JSON Web Token authentication in the launcher, in src/m
167167

168168
IntelliJ IDEA can be used with the launcher. The [IntelliJ IDEA Ultimate edition](https://www.jetbrains.com/idea/download/#section=windows) is required due to its support for Spring Boot and JSP view pages.
169169

170-
**Note:** If you downloaded this code using [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/) from the DocuSign Developer Center, skip step 2 as it was automatically performed for you.
170+
**Note:** If you downloaded this code using [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/) from the Docusign Developer Center, skip step 2 as it was automatically performed for you.
171171

172172
1. Extract the Quickstart ZIP file or download or clone the code-examples-java repository.
173173
1. To configure the launcher for [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) authentication, create a copy of the file src/main/resources/application.example.json and save the copy as src/main/resources/application.json.
@@ -185,14 +185,14 @@ IntelliJ IDEA can be used with the launcher. The [IntelliJ IDEA Ultimate edition
185185
1. To the right of **Main class**, select **... > App (com.docusign) code-examples-java**, then select **OK**.
186186
1. Under **Spring Boot**, select the **Enable debug output** checkbox, then select **OK**.
187187
1. Run the launcher: In the top navigation bar, select **Run > Run 'App'**. The launcher automatically opens.
188-
When prompted, log in to your DocuSign developer account. If this is your first time using the app, select **ACCEPT** at the consent window.
188+
When prompted, log in to your Docusign developer account. If this is your first time using the app, select **ACCEPT** at the consent window.
189189
1. [Optional] To install Lombok, select **File > Settings > Plugins > Marketplace** tab. To the right of the magnifying glass icon, input: `Lombok`
190190
It should have an author named Michail Plushnikov. Select **Install**, then restart IntelliJ.
191191

192192

193193
## Eclipse instructions for Windows
194194

195-
**Note:** If you downloaded this code using [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/) from the DocuSign Developer Center, skip step 2 as it was automatically performed for you.
195+
**Note:** If you downloaded this code using [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/) from the Docusign Developer Center, skip step 2 as it was automatically performed for you.
196196

197197
1. Extract the Quickstart ZIP file or download or clone the code-examples-java repository.
198198
1. To configure the launcher for [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) authentication, create a copy of the file src/main/resources/application.example.json and save the copy as src/main/resources/application.json.
@@ -217,11 +217,11 @@ IntelliJ IDEA can be used with the launcher. The [IntelliJ IDEA Ultimate edition
217217
1. In the **Main class** field, input: `com.docusign.App`
218218
1. Select the **JRE** tab. Under **Runtime JRE**, ensure it lists jdk-11 or higher. Select **Apply** to save.
219219
1. Select **Run** to run the launcher. The launcher automatically opens.
220-
When prompted, log in to your DocuSign developer account. If this is your first time using the app, select **ACCEPT** at the consent window.
220+
When prompted, log in to your Docusign developer account. If this is your first time using the app, select **ACCEPT** at the consent window.
221221
1. [Optional] Download [lombok.jar](https://projectlombok.org/downloads/lombok.jar) to your local machine, then run the following command to install Lombok: `java -jar lombok.jar`
222222

223223
## JWT grant remote signing project
224-
See [DocuSign Quickstart overview](https://developers.docusign.com/docs/esign-rest-api/quickstart/overview/) on the DocuSign Developer Center for more information on how to run the JWT grant remote signing project.
224+
See [Docusign Quickstart overview](https://developers.docusign.com/docs/esign-rest-api/quickstart/overview/) on the Docusign Developer Center for more information on how to run the JWT grant remote signing project.
225225

226226
## Payments code example
227227

src/main/java/com/docusign/controller/eSignature/examples/EG040ControllerSetDocumentVisibility.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class EG040ControllerSetDocumentVisibility extends AbstractEsignatureCont
3333

3434
private static final String FIXING_INSTRUCTIONS_FOR_PERMISSIONS = "See " +
3535
"<a href=\"https://developers.docusign.com/docs/esign-rest-api/how-to/set-document-visibility\">" +
36-
"How to set document visibility for envelope recipients</a> in the DocuSign Developer Center " +
36+
"How to set document visibility for envelope recipients</a> in the Docusign Developer Center " +
3737
"for instructions on how to enable document visibility in your developer account.";
3838

3939
@Autowired

src/main/resources/applicationJsonMissingError.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
66
<meta name="description" content="">
77
<meta name="author" content="">
8-
<link rel="icon" href="public/assets/favicon.ico">
8+
<link rel="icon" href="public/assets/favicon.png">
99

1010
<title>Error finding the application.json file</title>
1111

@@ -18,7 +18,7 @@
1818

1919
<body>
2020
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
21-
<a class="navbar-brand" target="_blank" href="https://developers.docusign.com">DocuSign Developer</a>
21+
<a class="navbar-brand" target="_blank" href="https://developers.docusign.com">Docusign Developer</a>
2222
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault"
2323
aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
2424
<span class="navbar-toggler-icon"></span>
-32.5 KB
Binary file not shown.
1.19 KB
Loading

src/main/webapp/WEB-INF/templates/views/pages/esignature/examples/quickEmbeddedSigning.jsp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
1212
<meta name="description" content="">
1313
<meta name="author" content="">
14-
<link rel="icon" href="assets/favicon.ico">
14+
<link rel="icon" href="assets/favicon.png">
1515

1616
<title>${title}</title>
1717

@@ -25,7 +25,7 @@
2525
<body>
2626

2727
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
28-
<a class="navbar-brand" target="_blank" href="https://developers.docusign.com">DocuSign Developer</a>
28+
<a class="navbar-brand" target="_blank" href="https://developers.docusign.com">Docusign Developer</a>
2929
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
3030
<span class="navbar-toggler-icon"></span>
3131
</button>

src/main/webapp/WEB-INF/templates/views/partials/head.jsp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
88
<meta name="description" content="">
99
<meta name="author" content="">
10-
<link rel="icon" href="/assets/favicon.ico">
10+
<link rel="icon" href="/assets/favicon.png">
1111

1212
<title>${title}</title>
1313

@@ -20,7 +20,7 @@
2020

2121
<body>
2222
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
23-
<a class="navbar-brand" target="_blank" href="https://developers.docusign.com">DocuSign Developer</a>
23+
<a class="navbar-brand" target="_blank" href="https://developers.docusign.com">Docusign Developer</a>
2424
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault"
2525
aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
2626
<span class="navbar-toggler-icon"></span>

0 commit comments

Comments
 (0)