OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UriPatternType
(Results
1 - 13
of
13
) sorted by null
/external/guice/extensions/servlet/src/com/google/inject/servlet/
UriPatternMatcher.java
43
UriPatternType
getPatternType();
ServletModuleBinding.java
30
UriPatternType
getUriPatternType();
UriPatternType.java
26
public enum
UriPatternType
{
29
static UriPatternMatcher get(
UriPatternType
type, String pattern) {
107
public
UriPatternType
getPatternType() {
108
return
UriPatternType
.SERVLET;
144
public
UriPatternType
getPatternType() {
145
return
UriPatternType
.REGEX;
FiltersModuleBuilder.java
44
return new FilterKeyBindingBuilderImpl(patterns,
UriPatternType
.SERVLET);
48
return new FilterKeyBindingBuilderImpl(regexes,
UriPatternType
.REGEX);
54
private final
UriPatternType
uriPatternType
;
56
private FilterKeyBindingBuilderImpl(List<String> uriPatterns,
UriPatternType
uriPatternType
) {
58
this.
uriPatternType
=
uriPatternType
;
90
new FilterDefinition(pattern, filterKey,
UriPatternType
.get(
uriPatternType
, pattern)
[
all
...]
ServletsModuleBuilder.java
48
return new ServletKeyBindingBuilderImpl(urlPatterns,
UriPatternType
.SERVLET);
52
return new ServletKeyBindingBuilderImpl(regexes,
UriPatternType
.REGEX);
58
private final
UriPatternType
uriPatternType
;
60
private ServletKeyBindingBuilderImpl(List<String> uriPatterns,
UriPatternType
uriPatternType
) {
62
this.
uriPatternType
=
uriPatternType
;
95
new ServletDefinition(pattern, servletKey,
UriPatternType
96
.get(
uriPatternType
, pattern), initParams, servletInstance))
[
all
...]
AbstractServletModuleBinding.java
53
public
UriPatternType
getUriPatternType() {
/external/guice/extensions/servlet/test/com/google/inject/servlet/
UriPatternTypeTest.java
25
UriPatternMatcher pattern =
UriPatternType
.get(
UriPatternType
.SERVLET, "/foo/*");
33
pattern =
UriPatternType
.get(
UriPatternType
.SERVLET, "*.bar");
41
pattern =
UriPatternType
.get(
UriPatternType
.SERVLET, "/asdf");
51
UriPatternMatcher pattern =
UriPatternType
.get(
UriPatternType
.REGEX, "/.*/foo");
ServletDefinitionTest.java
76
Key.get(HttpServlet.class),
UriPatternType
.get(
UriPatternType
.SERVLET, pattern), initParams, null);
112
Key.get(HttpServlet.class),
UriPatternType
.get(
UriPatternType
.SERVLET, pattern),
FilterDefinitionTest.java
71
UriPatternType
.get(
UriPatternType
.SERVLET, pattern), initParams, null);
116
UriPatternType
.get(
UriPatternType
.SERVLET, pattern),
177
UriPatternType
.get(
UriPatternType
.SERVLET, pattern),
209
UriPatternType
.get(
UriPatternType
.SERVLET, pattern),
244
UriPatternType
.get(
UriPatternType
.SERVLET, pattern)
[
all
...]
ServletDefinitionPathsTest.java
99
UriPatternType
.get(
UriPatternType
.SERVLET, mapping), new HashMap<String, String>(), null);
199
UriPatternType
.get(
UriPatternType
.SERVLET, mapping), new HashMap<String, String>(), null);
299
UriPatternType
.get(
UriPatternType
.REGEX, mapping), new HashMap<String, String>(), null);
ServletPipelineRequestDispatcherTest.java
68
Key.get(HttpServlet.class),
UriPatternType
.get(
UriPatternType
.SERVLET, pattern),
131
Key.get(HttpServlet.class),
UriPatternType
.get(
UriPatternType
.SERVLET, pattern),
214
Key.get(HttpServlet.class),
UriPatternType
.get(
UriPatternType
.SERVLET, pattern),
ServletSpiVisitor.java
108
private final
UriPatternType
patternType;
117
Params(String pattern, Object keyOrInstance, Map params,
UriPatternType
patternType) {
ExtensionSpiTest.java
19
import static com.google.inject.servlet.
UriPatternType
.REGEX;
20
import static com.google.inject.servlet.
UriPatternType
.SERVLET;
Completed in 264 milliseconds