Skip to content

AnnotationSro/signito-client-howto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 

Repository files navigation

Signito Java client - usage guide

This repository contains HowTos and usage examples for Signito signing solution. Make sure this repository is switched to appropriate tag - based on signito-client version you are using.

Basic usage

To start using signito-client Java API just include these Maven dependencies into your project:

<dependency>
    <groupId>sk.annotation.projects.signito</groupId>
    <artifactId>signito-client</artifactId>
    <classifier>minimal</classifier>
    <version>LATEST VERSION FROM MAVEN CENTRAL</version>
</dependency>

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.13.2.2</version>
</dependency>

<dependency>
    <groupId>com.fasterxml.jackson.datatype</groupId>
    <artifactId>jackson-datatype-jsr310</artifactId>
    <version>2.13.3</version>
</dependency>

<dependency>
    <groupId>com.fasterxml.jackson.datatype</groupId>
    <artifactId>jackson-datatype-jdk8</artifactId>
    <version>2.13.3</version>
</dependency>

Examples of how to use Java API you just importend, please refer to sample Maven project in this repository that contains several examples for:

  • creating new document to sign (basic scenario with one signature and one document, to more complex examples)
  • checking whether document is signed (either by webhook or by pull-method)
  • downloading signed documents & signature protocol

About

Set of examples and HowTos for signito-client Java API

Resources

Stars

Watchers

Forks

Languages