Package io.quarkus.vertx.http.runtime
Class RouteConstants
- java.lang.Object
-
- io.quarkus.vertx.http.runtime.RouteConstants
-
public final class RouteConstants extends Object
Route order value constants used in Quarkus, updatereactive-routes.adocwhen changing this class.
-
-
Field Summary
Fields Modifier and Type Field Description static intROUTE_ORDER_ACCESS_LOG_HANDLEROrder value (-2147483648) for the access-log handler, if enabled in the configuration.static intROUTE_ORDER_AFTER_DEFAULTOrder value (20000) for route without priority over the default route (add an offset from this value)static intROUTE_ORDER_BEFORE_DEFAULTOrder value (1000) for route with priority over the default route (add an offset from this value)static intROUTE_ORDER_BODY_HANDLEROrder value (-2147483647) for the body handler.static intROUTE_ORDER_BODY_HANDLER_MANAGEMENTOrder value (-2147483648) for the body handler for the management router.static intROUTE_ORDER_COMPRESSIONOrder value (0) for the compression handler.static intROUTE_ORDER_CORS_MANAGEMENTOrder value (-2147483648) for the CORS-Origin handler of the management router.static intROUTE_ORDER_DEFAULTDefault route order (i.e.static intROUTE_ORDER_HEADERSOrder value (-2147483648) for the handlers that add headers specified in the configuration.static intROUTE_ORDER_HOT_REPLACEMENTOrder value (-2147483648) for the hot-replacement body handler.static intROUTE_ORDER_RECORD_START_TIMEOrder value (-2147483648) for the handler adding the start-time, if enabled in the configuration.static intROUTE_ORDER_UPLOAD_LIMITOrder value (-2) for the route that enforces the upload body size limit.
-
-
-
Field Detail
-
ROUTE_ORDER_ACCESS_LOG_HANDLER
public static final int ROUTE_ORDER_ACCESS_LOG_HANDLER
Order value (-2147483648) for the access-log handler, if enabled in the configuration.- See Also:
- Constant Field Values
-
ROUTE_ORDER_RECORD_START_TIME
public static final int ROUTE_ORDER_RECORD_START_TIME
Order value (-2147483648) for the handler adding the start-time, if enabled in the configuration.- See Also:
- Constant Field Values
-
ROUTE_ORDER_HOT_REPLACEMENT
public static final int ROUTE_ORDER_HOT_REPLACEMENT
Order value (-2147483648) for the hot-replacement body handler.- See Also:
- Constant Field Values
-
ROUTE_ORDER_BODY_HANDLER_MANAGEMENT
public static final int ROUTE_ORDER_BODY_HANDLER_MANAGEMENT
Order value (-2147483648) for the body handler for the management router.- See Also:
- Constant Field Values
-
ROUTE_ORDER_HEADERS
public static final int ROUTE_ORDER_HEADERS
Order value (-2147483648) for the handlers that add headers specified in the configuration.- See Also:
- Constant Field Values
-
ROUTE_ORDER_CORS_MANAGEMENT
public static final int ROUTE_ORDER_CORS_MANAGEMENT
Order value (-2147483648) for the CORS-Origin handler of the management router.- See Also:
- Constant Field Values
-
ROUTE_ORDER_BODY_HANDLER
public static final int ROUTE_ORDER_BODY_HANDLER
Order value (-2147483647) for the body handler.- See Also:
- Constant Field Values
-
ROUTE_ORDER_UPLOAD_LIMIT
public static final int ROUTE_ORDER_UPLOAD_LIMIT
Order value (-2) for the route that enforces the upload body size limit.- See Also:
- Constant Field Values
-
ROUTE_ORDER_COMPRESSION
public static final int ROUTE_ORDER_COMPRESSION
Order value (0) for the compression handler.- See Also:
- Constant Field Values
-
ROUTE_ORDER_BEFORE_DEFAULT
public static final int ROUTE_ORDER_BEFORE_DEFAULT
Order value (1000) for route with priority over the default route (add an offset from this value)- See Also:
- Constant Field Values
-
ROUTE_ORDER_DEFAULT
public static final int ROUTE_ORDER_DEFAULT
Default route order (i.e. Static Resources, Servlet): (10000)- See Also:
- Constant Field Values
-
ROUTE_ORDER_AFTER_DEFAULT
public static final int ROUTE_ORDER_AFTER_DEFAULT
Order value (20000) for route without priority over the default route (add an offset from this value)- See Also:
- Constant Field Values
-
-