Browse Source

Format code

Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
pull/18123/head
Tran Ngoc Nhan 3 months ago committed by Rob Winch
parent
commit
d20c88ecef
  1. 4
      cas/src/main/java/org/springframework/security/cas/web/CasAuthenticationFilter.java
  2. 4
      config/src/main/java/org/springframework/security/config/annotation/AbstractConfiguredSecurityBuilder.java
  3. 3
      web/src/main/java/org/springframework/security/web/util/ThrowableAnalyzer.java
  4. 4
      web/src/main/java/org/springframework/security/web/util/UrlUtils.java

4
cas/src/main/java/org/springframework/security/cas/web/CasAuthenticationFilter.java

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

4
config/src/main/java/org/springframework/security/config/annotation/AbstractConfiguredSecurityBuilder.java

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

3
web/src/main/java/org/springframework/security/web/util/ThrowableAnalyzer.java

@ -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; private final Map<Class<? extends Throwable>, ThrowableCauseExtractor> extractorMap;

4
web/src/main/java/org/springframework/security/web/util/UrlUtils.java

@ -87,8 +87,8 @@ public final class UrlUtils {
* (SEC-1255). This method is typically used to return a URL for matching against * (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 * 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 * 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 * objects which just have the requestURI and contextPath set, for example, so it will
* will fall back to using those. * fall back to using those.
* @return the decoded URL, excluding any server name, context path or servlet path * @return the decoded URL, excluding any server name, context path or servlet path
* *
*/ */

Loading…
Cancel
Save