From eeb14b396554d25698db8a4e6798733ce6c18da6 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Wed, 26 Mar 2008 12:22:26 +0000 Subject: [PATCH] Changed filter order numbers to start at zero (makes them more readable in log compared with large negative numbers) --- .../java/org/springframework/security/ui/FilterChainOrder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/ui/FilterChainOrder.java b/core/src/main/java/org/springframework/security/ui/FilterChainOrder.java index 7d897ab3a7..e6d5efa87f 100644 --- a/core/src/main/java/org/springframework/security/ui/FilterChainOrder.java +++ b/core/src/main/java/org/springframework/security/ui/FilterChainOrder.java @@ -17,7 +17,7 @@ public abstract class FilterChainOrder { * The first position at which a Spring Security filter will be found. Any filter with an order less than this will * be guaranteed to be placed before the Spring Security filters in the stack. */ - public static final int FILTER_CHAIN_FIRST = Ordered.HIGHEST_PRECEDENCE + 1000; + public static final int FILTER_CHAIN_FIRST = 0; private static final int INTERVAL = 100; private static int i = 1;