Skip to content

Latest commit

 

History

History
86 lines (60 loc) · 3.33 KB

README.md

File metadata and controls

86 lines (60 loc) · 3.33 KB

The Official DocuSign Admin Java Client

Build status Maven Central status

Requirements

Compatibility

  • Java 1.9+

Note

This open-source SDK is provided for cases where you would like to make additional changes that the SDK does not provide out-of-the-box. If you simply want to use the SDK with any of the examples shown in the Developer Center , follow the installation instructions below.

Installation

Note: DocuSign uses Eclipse with Maven for testing purposes.

Maven:

  1. In Eclipse, create a new project by selecting File -> New -> Project.
  2. In the New Project Wizard , expand Maven , then select Maven Project.
  3. Leave Create a simple project unchecked.
  4. Select Next , then provide a unique Group and Artifact Id.
  5. In the directory where you've saved your project, open the pom.xml file.
  6. In the pom.xml file, locate the dependencies node.
  7. Add:
<dependency>
  <groupId>com.docusign</groupId>
  <artifactId>docusign-admin-java</artifactId>
  <version>1.1.0</version>
</dependency>
  1. If your project is still open, restart Eclipse.

Dependencies

This client has the following external dependencies:

  • io.swagger:swagger-annotations:jar:1.5.17
  • org.glassfish.jersey.core:jersey-client:jar:2.29.1
  • org.glassfish.jersey.media:jersey-media-multipart:jar:2.29.1
  • org.glassfish.jersey.media:jersey-media-json-jackson:2.29.1
  • com.fasterxml.jackson.core:jackson-core:jar:2.10.1
  • com.fasterxml.jackson.core:jackson-annotations:jar:2.10.1
  • com.fasterxml.jackson.core:jackson-databind:2.10.1
  • junit:junit:jar:4.12
  • com.apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.2
  • com.auth0:java-jwt:3.4.1
  • org.bouncycastle:bcprov-jdk15on:1.60

OAuth Implementations

For details regarding which type of OAuth grant will work best for your DocuSign integration, see the REST API Authentication Overview guide located on the DocuSign Developer Center.

For security purposes, DocuSign recommends using the Authorization Code Grant flow.

Support

Log issues against this client through GitHub. We also have an active developer community on Stack Overflow.

License

The DocuSign Java Client is licensed under the [MIT License](https://github.com/docusign/docusign-admin-java-client/blob /master/LICENSE).

Additional Resources