Package de.xima.fc.user_portal.route
Interface IAnyUserPortalRoute
-
- All Known Subinterfaces:
IUserPortalRoute<RoutingContext>
- All Known Implementing Classes:
EUserPortalGeneralView
,EUserPortalPortalView
public interface IAnyUserPortalRoute
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default int
defaultStatusCode()
The default HTTP status code to return.String
id()
Gets the ID of this route.org.ocpsoft.rewrite.servlet.config.HttpConfigurationProvider
rewriteConfigurator()
Gets the configurator for the configuring rewrite rules for this route.IUserPortalRouterUrlHandler<?>
urlHandler()
Gets the URL handler for this route.
-
-
-
Method Detail
-
defaultStatusCode
default int defaultStatusCode()
The default HTTP status code to return. Defaults to 200.- Returns:
- The default HTTP status code.
-
id
String id()
Gets the ID of this route.- Returns:
- The ID.
-
rewriteConfigurator
org.ocpsoft.rewrite.servlet.config.HttpConfigurationProvider rewriteConfigurator()
Gets the configurator for the configuring rewrite rules for this route.- Returns:
- The rewrite configurator.
-
urlHandler
IUserPortalRouterUrlHandler<?> urlHandler()
Gets the URL handler for this route.- Returns:
- The URL handler.
-
-