Home | History | Annotate | Download | only in servlet

Lines Matching defs:through

103    *       filter("/*").through(MyFilter.class);
104 * filter("*.css").through(MyCssFilter.class);
105 * filter("*.jpg").through(new MyJpgFilter());
116 * "{@code /my/file.js}" (after it runs through the matching filters) will first
179 * filter("/*").through(<b>Key.get(Filter.class, Fave.class)</b>);
209 * filter("/*").through(RpcFilter.class);
214 * filter("/*").through(WebServiceFilter.class);
300 void through(Class<? extends Filter> filterKey);
301 void through(Key<? extends Filter> filterKey);
303 void through(Filter filter);
304 void through(Class<? extends Filter> filterKey, Map<String, String> initParams);
305 void through(Key<? extends Filter> filterKey, Map<String, String> initParams);
307 void through(Filter filter, Map<String, String> initParams);