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

Jira Bearer Authentication #521

Merged
merged 29 commits into from
May 25, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8021b08
Added JiraRestService construct that accept bearer token authentication
Mar 27, 2023
ee90ba2
Added class BearerHttpAuthenticationHandler
Mar 27, 2023
7495860
Added token in JiraConfig and added bearer auth tests class
Mar 27, 2023
a9d9ab6
Updated config.jelly.
Mar 27, 2023
049406c
Moved BearerHttpAuthenticationHandler to auth folder
Mar 27, 2023
85bbe68
Created JiraSessionFactory class
Mar 27, 2023
702e60d
Updated JiraSite logic with useBearerAuth
Mar 27, 2023
8cb07a8
Added JiraRestServiceBearerAuthTest class
Mar 27, 2023
322d22f
Fixed DescriptorImpltest
Mar 27, 2023
b94659e
Fixed typo
Mar 28, 2023
8714cf6
Updated doValidate JiraSite method
Mar 28, 2023
e831f45
Added BearerHttpAuthenticationHandlerTest class
Mar 28, 2023
e9f6ed2
Updated config.jelly
Mar 30, 2023
e7f9425
Testing config.jelly radio button on authentication method
Mar 30, 2023
34ab5d0
Fixed config.jelly error
Mar 30, 2023
ebb5203
Testing jelly config
Mar 30, 2023
81369ce
Fix jelly config
Mar 30, 2023
e62e3ff
Testing default value for authentication method
Mar 30, 2023
192dc24
Authentication default value
Mar 30, 2023
9cceca0
Testing useBearerAuth
Mar 30, 2023
66d7d20
Hide useHTTPAuth entry
Mar 30, 2023
a41e901
Updated use Bearer authentication title
Mar 30, 2023
7c6d4ba
Testing apache.httpcomponentns library
Apr 7, 2023
e4628e6
Revert "Testing apache.httpcomponentns library"
Apr 7, 2023
7329d31
Added note on http authentication bearer checkbox
May 11, 2023
c2d7a9d
Moved useBearerAuth note to description
May 12, 2023
ff1a63c
Fixing config.jelly
May 12, 2023
3cb87dd
Moved descriptio to config.properties
May 12, 2023
03b2440
Moved description to entry tag
May 17, 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 @@ -10,7 +10,7 @@
<f:checkbox title="${%Use HTTP authentication instead of normal login}" field="useHTTPAuth" />
</f:invisibleEntry>
<f:entry>
<f:checkbox title="${%Use Bearer authentication instead of Basic authentication}" field="useBearerAuth" description="${%Note: Bearer authentication is only supported in Jira Server, for Jira Cloud leave this unchecked}" />
<f:checkbox title="${%Use Bearer authentication instead of Basic authentication}" field="useBearerAuth" description="${%site.useBearerAuth}" />
rantoniuk marked this conversation as resolved.
Show resolved Hide resolved
</f:entry>
<f:entry>
<f:checkbox title="${%Supports Wiki notation}" field="supportsWikiStyleComment" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
site.alternativeUrl=Jira alternative URL
site.timeout=in seconds
site.useBearerAuth=Note: Bearer authentication is only supported in Jira Server, for Jira Cloud leave this unchecked