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

Fix vale errors in Security Authentication mechanisms #37131

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -213,14 +213,14 @@ public static class RelyingPartyConfig {
* referred to as "renewal-timeout".
*
* Note that smaller values will result in slightly more server load (as new encrypted cookies will be
* generated more often), however larger values affect the inactivity timeout as the timeout is set
* generated more often); however, larger values affect the inactivity timeout because the timeout is set
* when a cookie is generated.
*
* For example if this is set to 10 minutes, and the inactivity timeout is 30m, if a users last request
* is when the cookie is 9m old then the actual timeout will happen 21m after the last request, as the timeout
* For example if this is set to 10 minutes, and the inactivity timeout is 30m, if a user's last request
* is when the cookie is 9m old then the actual timeout will happen 21m after the last request because the timeout
* is only refreshed when a new cookie is generated.
*
* In other words, no timeout is tracked on the server side; the timestamp is encoded and encrypted in the cookie
* That is, no timeout is tracked on the server side; the timestamp is encoded and encrypted in the cookie
* itself, and it is decrypted and parsed with each request.
*/
@ConfigItem(defaultValue = "PT1M")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public enum CookieSameSite {

/**
* Option to control the name of the cookie used to redirect the user back
* to where he wants to get access to.
* to the location they want to access.
*/
@ConfigItem(defaultValue = "quarkus-redirect-location")
public String locationCookie;
Expand All @@ -83,15 +83,15 @@ public enum CookieSameSite {
* referred to as "renewal-timeout".
*
* Note that smaller values will result in slightly more server load (as new encrypted cookies will be
* generated more often), however larger values affect the inactivity timeout as the timeout is set
* generated more often); however, larger values affect the inactivity timeout because the timeout is set
* when a cookie is generated.
*
* For example if this is set to 10 minutes, and the inactivity timeout is 30m, if a users last request
* is when the cookie is 9m old then the actual timeout will happen 21m after the last request, as the timeout
* For example if this is set to 10 minutes, and the inactivity timeout is 30m, if a user's last request
* is when the cookie is 9m old then the actual timeout will happen 21m after the last request because the timeout
* is only refreshed when a new cookie is generated.
*
* In other words no timeout is tracked on the server side; the timestamp is encoded and encrypted in the cookie itself,
* and it is decrypted and parsed with each request.
* That is, no timeout is tracked on the server side; the timestamp is encoded and encrypted in the cookie
* itself, and it is decrypted and parsed with each request.
*/
@ConfigItem(defaultValue = "PT1M")
public Duration newCookieInterval;
Expand Down
Loading