Skip to content

docusign/code-examples-java

Repository files navigation

Java Launcher Code Examples

GitHub repo: code-examples-java

This GitHub repo includes code examples for the Docusign Admin API, Click API, eSignature REST API, Monitor API, and Rooms API.

Introduction

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

  • Authentication with Docusign via Authorization Code Grant. When the token expires, the user is asked to re-authenticate. The refresh token is not used.

  • Authentication with Docusign via JSON Web Token (JWT) Grant. When the token expires, it updates automatically.

The Spring Boot security Oauth2 boot autoconfigure package is used for authentication.

The OAuth library is used in the file WebSecurityConfig.java.

eSignature API

For more information about the scopes used for obtaining authorization to use the eSignature API, see Required scopes.

For a list of code examples that use the eSignature API, see the How-to guides overview on the Docusign Developer Center.

Rooms API

Note: To use the Rooms API, you must also create your Rooms developer account. Examples 4 and 6 require that you have the Docusign Forms feature enabled in your Rooms for Real Estate account.
For more information about the scopes used for obtaining authorization to use the Rooms API, see Required scopes.

For a list of code examples that use the Rooms API, see the How-to guides overview on the Docusign Developer Center.

Click API

For more information about the scopes used for obtaining authorization to use the Click API, see Required scopes

For a list of code examples that use the Click API, see the How-to guides overview on the Docusign Developer Center.

Monitor API

Note: To use the Monitor API, you must also enable Docusign Monitor for your organization.

For information about the scopes used for obtaining authorization to use the Monitor API, see the scopes section.

For a list of code examples that use the Monitor API, see the How-to guides overview on the Docusign Developer Center.

Admin API

Note: To use the Admin API, you must create an organization in your Docusign developer account. Also, to run the Docusign CLM code example, CLM must be enabled for your organization.

For information about the scopes used for obtaining authorization to use the Admin API, see the scopes section.

For a list of code examples that use the Admin API, see the How-to guides overview on the Docusign Developer Center.

Web Forms API

The Web Forms API is available in all developer accounts, but only in certain production account plans. Contact Docusign Support or your account manager to find out whether the Web Forms API is available for your production account plan.

For more information about the scopes used for obtaining authorization to use the Rooms API, see Required scopes.

For a list of code examples that use the Web Forms API, see the How-to guides overview on the Docusign Developer Center.

Installation

Prerequisites

Note: If you downloaded this code using Quickstart from the Docusign Developer Center, skip items 1 and 2 as they were automatically performed for you.

  1. A free Docusign developer account; create one if you don't already have one.

  2. A Docusign app and integration key that is configured to use either Authorization Code Grant or JWT Grant authentication.

    This video demonstrates how to obtain an integration key.

    To use Authorization Code Grant, you will need an integration key and a secret key. See Installation steps for details.

    To use JWT Grant, you will need an integration key, an RSA key pair, and the User ID GUID of the impersonated user. See Installation steps for JWT Grant authentication for details.

    For both authentication flows:

    If you use this launcher on your own workstation, the integration key must include redirect URIs of

    If you host this launcher on a remote web server, set your redirect URI as

    {base_url}/login

    where {base_url} is the URL for the web app.

  3. Download JDK 11 or later and extract to C:\Program Files\Java

  4. Download Maven and extract to C:

    • Follow these instructions to add both Java and Maven to the PATH environment variable.
  5. Git Bash command line, macOS Terminal, or Linux shell

Installation steps

Note: If you downloaded this code using Quickstart from the Docusign Developer Center, skip step 4 as it was automatically performed for you.

  1. Extract the Quickstart ZIP file or download or clone the code-examples-java repository.
  2. In your command-line environment, switch to the :
    cd <Quickstart > or cd code-examples-java
  3. Package the code: mvn package
  4. To configure the launcher for Authorization Code Grant authentication, create a copy of the file src/main/resources/application.example.json and save the copy as src/main/resources/application.json.
    1. Add your User ID. On the Apps and Keys page, under My Account Information, copy the User ID GUID and save it in application.json as your DS_TARGET_ACCOUNT_ID.
    2. Add your integration key. On the Apps and Keys page, under Apps and Integration Keys, choose the app to use, then select Actions > Edit. Under General Info, copy the Integration Key GUID and save it in application.json as your authorization.code.grant.client.client-id.
    3. Generate a secret key, if you don’t already have one. Under Authentication, select + ADD SECRET KEY. Copy the secret key and save it in application.json as your authorization.code.grant.client.client-secret.
    4. Add the launcher’s redirect URI. Under Additional settings, select + ADD URI, and set a redirect URI of http://localhost:8080/login&type=acg. Select SAVE.
    5. Set a name and email address for the signer. In application.json, save an email address as DS_SIGNER_EMAIL and a name as DS_SIGNER_NAME.
      Note: Protect your personal information. Please make sure that application.json will not be stored in your source code repository.

Multiple code examples, Authorization Code Grant, and JWT Grant:

  1. $ cd <Quickstart folder>
  2. $ mvn package -Dmaven.test.skip=true
  3. $ java -Dspring.profiles.active=dev -jar target/code-examples-java-1.0-SNAPSHOT.war For Windows:
  4. $ mvn package -D"maven.test.skip"="true"
  5. $ java -D"spring.profiles.active"="dev" -jar target/code-examples-java-1.0-SNAPSHOT.war

Authorization Code Grant embedded signing example:

  1. $ cd <Quickstart folder>/Quick_ACG
  2. $ mvn spring-boot:run -Drun.profiles=dev For Windows:
  3. $ mvn spring-boot:run -D"run.profiles"="dev"

JWT grant remote signing example:

  1. $ cd <Quickstart folder>/'JWT Console App'
  2. $ mvn compile
  3. $ mvn exec:java -Dexec.mainClass="com.docusign.jwtconsoleapp.JWTConsoleApp" For Windows
  4. $ mvn exec:java -D"exec.mainClass"="com.docusign.jwtconsoleapp.JWTConsoleApp"

Installation steps for JWT Grant authentication

Note: If you downloaded this code using Quickstart from the Docusign Developer Center, skip step 4 as it was automatically performed for you.
Also, in order to select JSON Web Token authentication in the launcher, in src/main/resources/application.json, change the quickstart setting to false.

  1. Extract the Quickstart ZIP file or download or clone the code-examples-java repository.
  2. In your command-line environment, switch to the folder: cd <Quickstart folder> or cd code-examples-java
  3. Package the code: mvn package
  4. To configure the launcher for JWT Grant authentication, create a copy of the file src/main/resources/application.example.json and save the copy as src/main/resources/application.json.
    1. Add your User ID. On the Apps and Keys page, under My Account Information, copy the User ID GUID and save it in application.json as your DS_TARGET_ACCOUNT_ID and as your jwt.grant.client.impersonated-user-guid.
    2. Add your integration key. On the Apps and Keys page, under Apps and Integration Keys, choose the app to use, then select Actions > Edit. Under General Info, copy the Integration Key GUID and save it in application.json as your jwt.grant.client.client-id.
    3. Generate an RSA key pair, if you don’t already have one. Under Authentication, select + GENERATE RSA. Copy the private key, and save it in a new file named src/main/resources/private.key.
    4. Add the launcher’s redirect URI. Under Additional settings, select + ADD URI, and set a redirect URI of http://localhost:8080/login&type=jwt. Select SAVE.
    5. Set a name and email address for the signer. In application.json, save an email address as DS_SIGNER_EMAIL and a name as DS_SIGNER_NAME.
      Note: Protect your personal information. Please make sure that application.json will not be stored in your source code repository.
  5. Run the launcher: mvn exec:java -Dexec.mainClass="com.docusign.jwtconsoleapp.JWTConsoleApp" (mvn exec:java -D"exec.mainClass"="com.docusign.jwtconsoleapp.JWTConsoleApp") The launcher automatically opens.
  6. On the black navigation bar, select Login.
  7. From the picklist, select JSON Web Token (JWT) grant > Authenticate with Docusign.
  8. When prompted, log in to your DocuSign developer account. If this is your first time using the app, select ACCEPT at the consent window.
  9. Select your desired code example.

IntelliJ Ultimate instructions for Windows

IntelliJ IDEA can be used with the launcher. The IntelliJ IDEA Ultimate edition is required due to its support for Spring Boot and JSP view pages.

Note: If you downloaded this code using Quickstart from the Docusign Developer Center, skip step 2 as it was automatically performed for you.

  1. Extract the Quickstart ZIP file or download or clone the code-examples-java repository.
  2. To configure the launcher for Authorization Code Grant authentication, create a copy of the file src/main/resources/application.example.json and save the copy as src/main/resources/application.json.
    1. Add your User ID. On the Apps and Keys page, under My Account Information, copy the User ID GUID and save it in application.json as your DS_TARGET_ACCOUNT_ID.
    2. Add your integration key. On the Apps and Keys page, under Apps and Integration Keys, choose the app to use, then select Actions > Edit. Under General Info, copy the Integration Key GUID and save it in application.json as your authorization.code.grant.client.client-id.
    3. Generate a secret key, if you don’t already have one. Under Authentication, select + ADD SECRET KEY. Copy the secret key and save it in application.json as your authorization.code.grant.client.client-secret.
    4. Add the launcher’s redirect URI. Under Additional settings, select + ADD URI, and set a redirect URI of http://localhost:8080/login&type=acg. Select SAVE.
    5. Set a name and email address for the signer. In application.json, save an email address as DS_SIGNER_EMAIL and a name as DS_SIGNER_NAME.
      Note: Protect your personal information. Please make sure that application.json will not be stored in your source code repository.
  3. Start IntelliJ IDEA Ultimate. In the Welcome to IntelliJ IDEA dialog box, select Open.
    1. In the Open File or Project dialog box, select your Quickstart folder or code-examples-java, then select OK.
    2. In Open or Import Project dialog box, select Maven project, then select OK.
  4. Create a Java application configuration: In the top navigation bar, select Run > Edit configurations.
    1. In the far left corner, select + > Spring Boot.
    2. To the right of Main class, select ... > App (com.docusign) code-examples-java, then select OK.
    3. Under Spring Boot, select the Enable debug output checkbox, then select OK.
  5. Run the launcher: In the top navigation bar, select Run > Run 'App'. The launcher automatically opens.
    When prompted, log in to your Docusign developer account. If this is your first time using the app, select ACCEPT at the consent window.
  6. [Optional] To install Lombok, select File > Settings > Plugins > Marketplace tab. To the right of the magnifying glass icon, input: Lombok
    It should have an author named Michail Plushnikov. Select Install, then restart IntelliJ.

Eclipse instructions for Windows

Note: If you downloaded this code using Quickstart from the Docusign Developer Center, skip step 2 as it was automatically performed for you.

  1. Extract the Quickstart ZIP file or download or clone the code-examples-java repository.

  2. To configure the launcher for Authorization Code Grant authentication, create a copy of the file src/main/resources/application.example.json and save the copy as src/main/resources/application.json.

    1. Add your User ID. On the Apps and Keys page, under My Account Information, copy the User ID GUID and save it in application.json as your DS_TARGET_ACCOUNT_ID.
    2. Add your integration key. On the Apps and Keys page, under Apps and Integration Keys, choose the app to use, then select Actions > Edit. Under General Info, copy the Integration Key GUID and save it in application.json as your authorization.code.grant.client.client-id.
    3. Generate a secret key, if you don’t already have one. Under Authentication, select + ADD SECRET KEY. Copy the secret key and save it in application.json as your authorization.code.grant.client.client-secret.
    4. Add the launcher’s redirect URI. Under Additional settings, select + ADD URI, and set a redirect URI of http://localhost:8080/login&type=acg. Select SAVE.
    5. Set a name and email address for the signer. In application.json, save an email address as DS_SIGNER_EMAIL and a name as DS_SIGNER_NAME.
      Note: Protect your personal information. Please make sure that application.json will not be stored in your source code repository.
  3. Open Eclipse and select File > Import. In the Import dialog box, select Existing Maven Project > Next > Browse, browse for your Quickstart folder or code-examples-java, then Select Folder.

    1. Under Projects, the pom.xml file should be selected.
    2. To save the project link to your Eclipse workspace, select the Add project(s) to working set checkbox. Select Finish.
  4. Next, select Run, then Run Configurations, and right-click Maven Build, then New Configuration to clean and compile the package.

    1. In the Name field, input: build
    2. In Base directory, input: ${workspace_loc:/code-examples-java}
    3. In Goals, input: clean package
    4. Select the JRE tab. Under Runtime JRE, ensure it lists jdk-11 or higher. Select Apply to save.
  5. In the Run Configurations dialog box, in the left sidebar, right-click Java Application, then select New Configuration.

    1. In the Name field, input: App
    2. In the Project field, input: code-examples-java
    3. In the Main class field, input: com.docusign.App
    4. Select the JRE tab. Under Runtime JRE, ensure it lists jdk-11 or higher. Select Apply to save.
    5. Select Run to run the launcher. The launcher automatically opens.
      When prompted, log in to your Docusign developer account. If this is your first time using the app, select ACCEPT at the consent window.
  6. [Optional] Download lombok.jar to your local machine, then run the following command to install Lombok: java -jar lombok.jar

JWT grant remote signing project

See Docusign Quickstart overview on the Docusign Developer Center for more information on how to run the JWT grant remote signing project.

Payments code example

To use the payments code example, create a test payment gateway on the Payments page in your developer account. See Configure a payment gateway for details.

Once you've created a payment gateway, save the Gateway Account ID GUID to application.json.

License and additional information

License

This repository uses the MIT License. See LICENSE for details.

Pull Requests

Pull requests are welcomed. Pull requests will only be considered if their content uses the MIT License.