Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OpenID-Connect-Java-Spring-Server
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
OpenID-Connect-Java-Spring-Server
Commits
93f2a85b
Verified
Commit
93f2a85b
authored
1 year ago
by
Dominik Frantisek Bucik
Browse files
Options
Downloads
Patches
Plain Diff
fix:
default values for dynreg
parent
0e0996d2
No related branches found
No related tags found
1 merge request
!374
Fix refresh audience
Pipeline
#394438
passed
1 year ago
Stage: .pre
Stage: build
Stage: test
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
perun-oidc-server/src/main/java/cz/muni/ics/oauth2/model/DynamicallyRegisteredRequestBody.java
+6
-6
6 additions, 6 deletions
...ni/ics/oauth2/model/DynamicallyRegisteredRequestBody.java
with
6 additions
and
6 deletions
perun-oidc-server/src/main/java/cz/muni/ics/oauth2/model/DynamicallyRegisteredRequestBody.java
+
6
−
6
View file @
93f2a85b
...
...
@@ -40,7 +40,7 @@ public class DynamicallyRegisteredRequestBody {
private
String
tosUri
;
@JsonAlias
(
"token_endpoint_auth_method"
)
private
String
tokenEndpointAuthMethod
;
private
String
tokenEndpointAuthMethod
=
"client_secret_basic"
;
@JsonAlias
(
"scope"
)
private
Set
<
String
>
scope
=
new
HashSet
<>();
...
...
@@ -118,25 +118,25 @@ public class DynamicallyRegisteredRequestBody {
private
Set
<
String
>
requestUris
=
new
HashSet
<>();
@JsonAlias
(
"access_token_validity_seconds"
)
private
Integer
accessTokenValiditySeconds
=
0
;
private
Integer
accessTokenValiditySeconds
=
360
0
;
@JsonAlias
(
"refresh_token_validity_seconds"
)
private
Integer
refreshTokenValiditySeconds
=
0
;
private
Integer
refreshTokenValiditySeconds
=
2880
0
;
@JsonAlias
(
"resources"
)
private
Set
<
String
>
resource
=
new
HashSet
<>();
@JsonAlias
(
"reuse_refresh_token"
)
private
boolean
reuseRefreshToken
=
tru
e
;
private
boolean
reuseRefreshToken
=
fals
e
;
@JsonAlias
(
"id_token_validity_seconds"
)
private
Integer
idTokenValiditySeconds
;
private
Integer
idTokenValiditySeconds
=
3600
;
@JsonAlias
(
"clear_access_tokens_on_refresh"
)
private
boolean
clearAccessTokensOnRefresh
=
true
;
@JsonAlias
(
"device_code_validity_seconds"
)
private
Integer
deviceCodeValiditySeconds
=
0
;
private
Integer
deviceCodeValiditySeconds
=
30
0
;
@JsonAlias
(
"claim_redirect_uris"
)
private
Set
<
String
>
claimsRedirectUris
=
new
HashSet
<>();
...
...
This diff is collapsed.
Click to expand it.
Perun-GitLab Service Account
@9045464
mentioned in commit
1796b30b
·
1 year ago
mentioned in commit
1796b30b
mentioned in commit 1796b30b28b123d65e76d4164cc11d6ed5d22bd6
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment