Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Marp 8 adobe sign connector finishing #2

Merged
merged 24 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4791b78
Get test OAuth authentication working, create URL with dynamic base, …
stefanmasek Sep 7, 2023
cf4342d
Improve getting base url from request
stefanmasek Sep 11, 2023
148dd39
OAuth token storing to Variable, dialog for auth setup
stefanmasek Sep 11, 2023
74691f9
use integration key if set, else use oauth
stefanmasek Sep 12, 2023
b48f953
Admin Setup dialog for global variables
stefanmasek Sep 12, 2023
dee0e27
request token retrieving and setup in Admin page
stefanmasek Sep 13, 2023
90d2795
add redirect uri to admin setup page, create setup documentation
stefanmasek Sep 14, 2023
3405ad6
fix doc images
stefanmasek Sep 14, 2023
edec674
fix integration key doc images
stefanmasek Sep 14, 2023
1b434bf
fix integration key doc images
stefanmasek Sep 14, 2023
b2a70e6
fix issue with storing refreshed tokens, improve admin page and docum…
stefanmasek Sep 15, 2023
1ba7d30
Variables, projects configuration
stefanmasek Sep 15, 2023
ee2d720
Demo documentation
stefanmasek Sep 15, 2023
b0d3a39
create test project
stefanmasek Sep 15, 2023
6e59fdf
service mocks and test base
stefanmasek Sep 18, 2023
5293d9c
remove commented code, fill repo readme
stefanmasek Sep 19, 2023
25c17e7
fix readme
stefanmasek Sep 19, 2023
d8c22a9
enhance demo, fix return url for multiple signers, update demo doc an…
stefanmasek Sep 20, 2023
dfd8474
fix modules pom
stefanmasek Sep 20, 2023
2e883fe
set build plugin version on demo project
stefanmasek Sep 20, 2023
b84dd1a
Fix test sample pdf file
stefanmasek Sep 20, 2023
91d37ce
fix documentation, remove commented code and logs used for development
stefanmasek Sep 21, 2023
56046f9
fix warnings
stefanmasek Sep 22, 2023
3baa634
removed unused code, fix restriction warnings
stefanmasek Sep 27, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ protected String getAuthCode() {
return authCode;
}

@SuppressWarnings("restriction")
private static BpmPublicErrorBuilder authError() {
return BpmError.create(RedirectToIdentityProvider.OAUTH2_ERROR_CODE);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public void notification(JsonNode node) {
Ivy.log().info(node);
}

@SuppressWarnings("unused")
private boolean verifyClientId(String clientId) {
return Optional.ofNullable(Ivy.var().get(CLIENT_ID_VAR)).map(s -> s.compareTo(clientId) == 0).orElse(false);
}
ivy-rew marked this conversation as resolved.
Show resolved Hide resolved
Expand Down