Skip to content

Commit

Permalink
remove commented code, fill repo readme
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanmasek committed Sep 19, 2023
1 parent 6e59fdf commit 5293d9c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# MY-PRODUCT-NAME
# Adobe Sign Connector

[![CI Build](https://github.com/axonivy-market/REPO-NAME/actions/workflows/ci.yml/badge.svg)](https://github.com/axonivy-market/REPO-NAME/actions/workflows/ci.yml)
[![CI Build](https://github.com/axonivy-market/adobesign-connector/actions/workflows/ci.yml/badge.svg)](https://github.com/axonivy-market/adobesign-connector/actions/workflows/ci.yml)

"YOUR SHORT DESCRIPTION GOES HERE"
The Adobe Sign Connector simplifies the authentication process and enables easy integration and use of Adobe Sign services for electronical signing of documents.

Read our [documentation](MY-PRODUCT-NAME-product/README.md).
Read our [documentation](adobesign-connector-product/README.md).
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,7 @@ public static void getNewAccessToken(String authCode) throws URISyntaxException
createRedirectUrl());
WebTarget target = client.target(tokenBaseUri);
Response response = target.request().post(Entity.form(authRequest.paramsMap()));
// else {
// tokenBaseUri.path(OAuth2UriProperty.REFRESH_RELATIVE_PATH);
// RefreshTokenRequest authRequest = new RefreshTokenRequest(refreshToken.refreshToken(), clientId, clientSecret);
// WebTarget target = client.target(tokenBaseUri);
// response = target.request().post(Entity.form(authRequest.paramsMap()));
// }

if (response.getStatusInfo().getFamily() == Family.SUCCESSFUL) {
GenericType<Map<String, Object>> map = new GenericType<>(Map.class);
// store new token
Expand Down

0 comments on commit 5293d9c

Please sign in to comment.