A generic composite servlet {@link Filter} that just delegates its behaviour to a chain (list) of user suppliedfilters, achieving the functionality of a {@link FilterChain}, but conveniently using only {@link Filter} instances.This is useful for filters that require dependency injection, and can therefore be set up in a Spring application context. Typically this composite would be used in conjunction with {@link DelegatingFilterProxy}, so that it can be declared in Spring but applied to a servlet context.
@since 3.1
@author Dave Syer
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.