Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,36 @@
# Build output
/target
/.gradle

# Dependencies
/vendor

# IDE
/.idea
/.fleet
/.vscode
/target
/.netbeans
*.iml
*.ipr
*.iws

# Editor swap files
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Environment / credentials
.env
.env.backup
.env.production
.env.development
.env.test
.env.local

# Project-local examples / fixtures
examples/signnow-example.properties
examples/files/bulk_real.csv
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The MIT License

Copyright (c) 2003-2019 airSlate Inc. [LICENSE](https://github.com/signnow/SignNowPHPSDK/blob/master/LICENSE.md)
Copyright (c) 2003-present SignNow

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# signNow API Java SDK
# SignNow API Java SDK
## v3.5.2

[![Java Version](https://img.shields.io/badge/codebase-java--11-yellowgreen)](https://www.java.com/)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<version>3.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/signnow/Sdk.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is a part of signNow SDK API client.
* This file is a part of SignNow SDK API client.
*
* (с) Copyright © 2011-present airSlate Inc. (https://www.signnow.com)
*
Expand All @@ -18,7 +18,7 @@
import com.signnow.core.token.BearerToken;

/**
* Main class for the signNow SDK.
* Main class for the SignNow SDK.
*/
public class Sdk {

Expand All @@ -29,7 +29,7 @@ public class Sdk {
private static final String GRANT_TYPE_BY_PASSWORD = "password";

/**
* signNow SDK Service Provider
* SignNow SDK Service Provider
*/
private final ApiServiceProvider apiServiceProvider;

Expand Down
Loading