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

/forgerock/openam-v13/openam-http/src/main/java/org/forgerock/openam/http/
H A DHttpRoute.java37 public final class HttpRoute { class
44 * Creates a new {@code HttpRoute} for a route with the given {@code mode} and
51 * @return The {@code HttpRoute}.
53 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, final Handler handler) {
63 * Creates a new {@code HttpRoute} for a route with the given {@code mode} and
70 * @return The {@code HttpRoute}.
72 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, Annotation annotation) {
77 * Creates a new {@code HttpRoute} for a route with the given {@code mode} and
84 * @return The {@code HttpRoute}.
86 public static HttpRoute newHttpRout
124 private HttpRoute(RoutingMode mode, String uriTemplate, Provider<Handler> handler) { method in class:HttpRoute
[all...]
/forgerock/openam/openam-http/src/main/java/org/forgerock/openam/http/
H A DHttpRoute.java44 public final class HttpRoute { class
47 * Creates a new {@code HttpRoute} for a route with the given {@code mode} and
54 * @return The {@code HttpRoute}.
56 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, final Handler handler) {
66 return new HttpRoute(mode, uriTemplate, new Provider<Handler>() {
75 * Creates a new {@code HttpRoute} for a route with the given {@code mode} and
82 * @return The {@code HttpRoute}.
84 public static HttpRoute newHttpRoute(RoutingMode mode, String uriTemplate, Annotation annotation) {
89 * Creates a new {@code HttpRoute} for a route with the given {@code mode} and
96 * @return The {@code HttpRoute}
170 private HttpRoute(RoutingMode mode, String uriTemplate, Provider<? extends Handler> handler, method in class:HttpRoute
[all...]

Completed in 363 milliseconds