Searched refs:filterKey (Results 1 – 3 of 3) sorted by relevance
/external/guice/extensions/servlet/src/com/google/inject/servlet/ |
D | FiltersModuleBuilder.java | 61 public void through(Class<? extends Filter> filterKey) { in through() argument 62 through(Key.get(filterKey)); in through() 65 public void through(Key<? extends Filter> filterKey) { in through() argument 66 through(filterKey, new HashMap<String, String>()); in through() 73 public void through(Class<? extends Filter> filterKey, in through() argument 77 through(Key.get(filterKey), initParams); in through() 80 public void through(Key<? extends Filter> filterKey, in through() argument 82 through(filterKey, initParams, null); in through() 85 private void through(Key<? extends Filter> filterKey, in through() argument 90 new FilterDefinition(pattern, filterKey, UriPatternType.get(uriPatternType, pattern), in through() [all …]
|
D | FilterDefinition.java | 46 private final Key<? extends Filter> filterKey; field in FilterDefinition 55 public FilterDefinition(String pattern, Key<? extends Filter> filterKey, in FilterDefinition() argument 58 this.filterKey = filterKey; in FilterDefinition() 81 filterKey, in acceptExtensionVisitor() 97 if (!Scopes.isSingleton(injector.getBinding(filterKey))) { in init() 99 + filterKey + " was not bound in singleton scope."); in init() 102 Filter filter = injector.getInstance(filterKey); in init() 114 return filterKey.toString(); in init()
|
D | ServletModule.java | 300 void through(Class<? extends Filter> filterKey); in through() argument 301 void through(Key<? extends Filter> filterKey); in through() argument 304 void through(Class<? extends Filter> filterKey, Map<String, String> initParams); in through() argument 305 void through(Key<? extends Filter> filterKey, Map<String, String> initParams); in through() argument
|