Searched defs:newHttpRoute (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-http/src/main/java/org/forgerock/openam/http/
H A DHttpRoute.java53 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, final Handler handler) { method in class:HttpRoute
54 return newHttpRoute(mode, uriTemplate, new Provider<Handler>() {
72 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, Annotation annotation) { method in class:HttpRoute
73 return newHttpRoute(mode, uriTemplate, Key.get(Handler.class, annotation));
86 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, Class<? extends Handler> handler) { method in class:HttpRoute
87 return newHttpRoute(mode, uriTemplate, Key.get(handler));
100 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, final Key<? extends Handler> key) { method in class:HttpRoute
101 return newHttpRoute(mode, uriTemplate, new Provider<Handler>() {
120 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, final Provider<Handler> provider) { method in class:HttpRoute
/forgerock/openam/openam-http/src/main/java/org/forgerock/openam/http/
H A DHttpRoute.java56 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, final Handler handler) { method in class:HttpRoute
84 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, Annotation annotation) { method in class:HttpRoute
85 return newHttpRoute(mode, uriTemplate, Key.get(Handler.class, annotation));
98 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, Class<? extends Handler> handler) { method in class:HttpRoute
99 return newHttpRoute(mode, uriTemplate, Key.get(handler));
112 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, final Key<? extends Handler> key) { method in class:HttpRoute
146 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, final Provider<Handler> provider) { method in class:HttpRoute

Completed in 43 milliseconds