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

Jans auth server client registration language metadata #1237

Merged
merged 20 commits into from
May 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
5e592f8
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 6, 2022
ebd1c5f
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 6, 2022
055e4df
Merge remote-tracking branch 'origin/main' into jans-auth-server-clie…
qbert2k Apr 7, 2022
0af9229
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 7, 2022
1699225
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 18, 2022
c3bca57
Merge remote-tracking branch 'origin/main' into jans-auth-server-clie…
qbert2k Apr 18, 2022
7313f96
Merge remote-tracking branch 'origin/main' into jans-auth-server-clie…
qbert2k Apr 19, 2022
6612b1f
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 25, 2022
7d603ba
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 25, 2022
acf6bb3
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 26, 2022
82cdfd3
Merge remote-tracking branch 'origin/main' into jans-auth-server-clie…
qbert2k Apr 26, 2022
8dab44e
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 27, 2022
17e5f78
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 27, 2022
5a5ab46
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 27, 2022
9af2ff1
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 27, 2022
afb10f5
feat(jans-auth-server): auth server should support client registratio…
qbert2k Apr 27, 2022
e15f106
Merge remote-tracking branch 'origin/main' into jans-auth-server-clie…
qbert2k May 5, 2022
6e2cd7b
fix sonar: duplicated lines
qbert2k May 10, 2022
0052275
Merge remote-tracking branch 'origin/main' into jans-auth-server-clie…
qbert2k May 11, 2022
a01691d
Merge remote-tracking branch 'origin/main' into jans-auth-server-clie…
qbert2k May 12, 2022
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 @@ -32,7 +32,7 @@
* Represents an authorization request to send to the authorization server.
*
* @author Javier Rojas Blum
* @version October 7, 2019
* @version April 25, 2022
*/
public class AuthorizationRequest extends BaseRequest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* @author Javier Rojas Blum
* @version January 26. 2018
* @version April 25. 2022
*/
public abstract class BaseRequest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
/**
* Represents a Client Info request to send to the authorization server.
*
* @author Javier Rojas Blum Date: 07.19.2012
* @author Javier Rojas Blum
* @version April 25, 2022
*/
public class ClientInfoRequest extends BaseRequest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

/**
* Represents a device authorization request to send to the authorization server.
* @version April 25, 2022
*/
public class DeviceAuthzRequest extends ClientAuthnRequest {

Expand Down
Loading