public interface NamedFilterList extends List<javax.servlet.Filter>
NamedFilterList is a List of Filter instances that is uniquely identified by a
name. It has the ability to generate new FilterChain instances reflecting this list's
filter order via the proxy method.| Modifier and Type | Method and Description |
|---|---|
String |
getName()
Returns the configuration-unique name assigned to this
Filter list. |
javax.servlet.FilterChain |
proxy(javax.servlet.FilterChain filterChain)
Returns a new
FilterChain instance that will first execute this list's Filters (in list order)
and end with the execution of the given filterChain instance. |
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArrayparallelStream, removeIf, streamString getName()
Filter list.Filter list.javax.servlet.FilterChain proxy(javax.servlet.FilterChain filterChain)
FilterChain instance that will first execute this list's Filters (in list order)
and end with the execution of the given filterChain instance.filterChain - the FilterChain instance to execute after this list's Filters have executed.FilterChain instance that will first execute this list's Filters (in list order)
and end with the execution of the given filterChain instance.Copyright © 2004–2017 The Apache Software Foundation. All rights reserved.