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 @@ -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

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

@ -419,8 +419,8 @@ public abstract class AbstractConfiguredSecurityBuilder<O, B extends SecurityBui @@ -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),

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

@ -72,7 +72,8 @@ public class ThrowableAnalyzer { @@ -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;

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

@ -87,8 +87,8 @@ public final class UrlUtils { @@ -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
*
*/

Loading…
Cancel
Save