Interface StatusRoute

All Superinterfaces:
Route

public interface StatusRoute extends Route
Represents a Route that matches a status.
Since:
1.0
Author:
Graeme Rocher
  • Method Details

    • toRouteInfo

      StatusRouteInfo<Object,Object> toRouteInfo()
      Specified by:
      toRouteInfo in interface Route
    • originatingType

      @Nullable @Nullable Class<?> originatingType()
      Returns:
      The type the exception originates from. Null if the error route is global.
    • status

      HttpStatus status()
      Returns:
      The status
    • statusCode

      default int statusCode()
      Returns:
      The status
    • consumes

      StatusRoute consumes(MediaType... mediaType)
      Description copied from interface: Route
      Applies the given accepted media type the route.
      Specified by:
      consumes in interface Route
      Parameters:
      mediaType - The media type
      Returns:
      A new route with the media type applied
    • nest

      StatusRoute nest(Runnable nested)
      Description copied from interface: Route
      Defines routes nested within this route.
      Specified by:
      nest in interface Route
      Parameters:
      nested - The nested routes
      Returns:
      This route
    • where

      StatusRoute where(Predicate<HttpRequest<?>> condition)
      Description copied from interface: Route
      Match this Route only if the given predicate is true.
      Specified by:
      where in interface Route
      Parameters:
      condition - The condition which accepts a HttpRequest
      Returns:
      This route