Package net.officefloor.web.route
Interface WebRouteHandler
-
- All Known Implementing Classes:
WebRouteHandlerImpl
public interface WebRouteHandler
Handles the web route.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(HttpArgument pathArguments, ServerHttpConnection connection, ManagedFunctionContext<?,Indexed> context)
Handles the web route.
-
-
-
Method Detail
-
handle
void handle(HttpArgument pathArguments, ServerHttpConnection connection, ManagedFunctionContext<?,Indexed> context)
Handles the web route.- Parameters:
pathArguments
- HeadHttpArgument
of the linked list ofHttpArgument
from the path.connection
-ServerHttpConnection
.context
-ManagedFunctionContext
.
-
-