Searched refs:doFilter (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DFilter.java38 * doFilter() implementation. The final Filter in the chain invokes the applications
75 public void doFilter (HttpExchange exchange) throws IOException { method in class:Filter.Chain
80 f.doFilter (exchange, this);
96 * {@link Filter.Chain#doFilter(HttpExchange)}</li>
98 * {@link Filter.Chain#doFilter(HttpExchange)}</li></ol>
99 * <li>if option 1. above taken, then when doFilter() returns all subsequent
110 public abstract void doFilter (HttpExchange exchange, Chain chain) method in class:Filter
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DAuthFilter.java64 public void doFilter (HttpExchange t, Filter.Chain chain) throws IOException method in class:AuthFilter
72 chain.doFilter (t);
83 chain.doFilter (t);
H A DServerImpl.java647 uc.doFilter (new HttpsExchangeImpl (tx));
649 uc.doFilter (new HttpExchangeImpl (tx));
677 nextChain.doFilter (exchange);
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DLogFilter.java49 public void doFilter (HttpExchange t, Filter.Chain chain) throws IOException method in class:LogFilter
51 chain.doFilter (t);
H A DTest14.java69 public void doFilter (HttpExchange exchange, Filter.Chain chain) method in class:Test14.OffsetFilter
74 chain.doFilter (exchange);
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DB5017051.java206 public void doFilter(HttpExchange t, Chain chain) throws IOException method in class:B5017051.CookieFilter
214 chain.doFilter(t);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DThreadTab.java251 boolean doFilter = (filter.length() > 0);
261 if (doFilter && name != null &&
286 if (!doFilter) {

Completed in 46 milliseconds