Changed Ntlm filter to use SpringSecurityFilter base class.

This commit is contained in:
Luke Taylor
2007-11-24 20:08:17 +00:00
parent 31b65dde52
commit 4f3a1739aa
3 changed files with 9 additions and 65 deletions

View File

@@ -29,6 +29,6 @@ public class FilterChainOrderUtils {
public static final int ANON_PROCESSING_FILTER_ORDER = FILTER_CHAIN_FIRST + INTERVAL * 10;
public static final int SWITCH_USER_FILTER_ORDER = FILTER_CHAIN_FIRST + INTERVAL * 11;
public static final int EXCEPTION_TRANSLATION_FILTER_ORDER = FILTER_CHAIN_FIRST + INTERVAL * 12;
public static final int FILTER_SECURITY_INTERCEPTOR_ORDER = FILTER_CHAIN_FIRST + INTERVAL * 13;
public static final int NTLM_FILTER_ORDER = FILTER_CHAIN_FIRST + INTERVAL * 13;
public static final int FILTER_SECURITY_INTERCEPTOR_ORDER = FILTER_CHAIN_FIRST + INTERVAL * 14;
}