- java.lang.Object
- 
- com.sun.net.httpserver.Filter.Chain
 
- 
- 
Constructor SummaryConstructors Constructor Description Chain(List<Filter> filters, HttpHandler handler)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddoFilter(HttpExchange exchange)calls the next filter in the chain, or else the users exchange handler, if this is the final filter in the chain.
 
- 
- 
- 
Constructor Detail- 
Chainpublic Chain(List<Filter> filters, HttpHandler handler) 
 
- 
 - 
Method Detail- 
doFilterpublic void doFilter(HttpExchange exchange) throws IOException calls the next filter in the chain, or else the users exchange handler, if this is the final filter in the chain. The Filter may decide to terminate the chain, by not calling this method. In this case, the filter must send the response to the request, because the application's exchange handler will not be invoked.- Parameters:
- exchange- the HttpExchange
- Throws:
- IOException- let exceptions pass up the stack
- NullPointerException- if exchange is- null
 
 
- 
 
-