Format code

Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
This commit is contained in:
Tran Ngoc Nhan 2025-11-01 14:16:22 +07:00 committed by Rob Winch
parent 79815e044e
commit d20c88ecef
4 changed files with 8 additions and 7 deletions

View File

@ -383,8 +383,8 @@ public class CasAuthenticationFilter extends AbstractAuthenticationProcessingFil
}
/**
* Indicates if the request is eligible to process a service ticket. This method exists
* for readability.
* Indicates if the request is eligible to process a service ticket. This method
* exists for readability.
* @param request
* @param response
* @return

View File

@ -419,8 +419,8 @@ public abstract class AbstractConfiguredSecurityBuilder<O, B extends SecurityBui
UNBUILT(0),
/**
* The state from when {@link SecurityBuilder#build()} is first invoked until all the
* {@link SecurityConfigurer#init(SecurityBuilder)} methods have been invoked.
* The state from when {@link SecurityBuilder#build()} is first invoked until all
* the {@link SecurityConfigurer#init(SecurityBuilder)} methods have been invoked.
*/
INITIALIZING(1),

View File

@ -72,7 +72,8 @@ public class ThrowableAnalyzer {
};
/**
* Map of registered cause extractors. key: Class&lt;Throwable&gt;; value: ThrowableCauseExtractor
* Map of registered cause extractors. key: Class&lt;Throwable&gt;; value:
* ThrowableCauseExtractor
*/
private final Map<Class<? extends Throwable>, ThrowableCauseExtractor> extractorMap;

View File

@ -87,8 +87,8 @@ public final class UrlUtils {
* (SEC-1255). This method is typically used to return a URL for matching against
* secured paths, hence the decoded form is used in preference to the requestURI for
* building the returned value. But this method may also be called using dummy request
* objects which just have the requestURI and contextPath set, for example, so it
* will fall back to using those.
* objects which just have the requestURI and contextPath set, for example, so it will
* fall back to using those.
* @return the decoded URL, excluding any server name, context path or servlet path
*
*/