Package dev.relism.flash.routing


package dev.relism.flash.routing
  • Class
    Description
    Base router contract.
     
     
    Shorthand for @Route(method = HttpMethod.CONNECT, path = "…").
    Shorthand for @Route(method = HttpMethod.DELETE, path = "…").
    Shorthand for @Route(method = HttpMethod.GET, path = "…").
    Shorthand for @Route(method = HttpMethod.HEAD, path = "…").
    Stateless interceptor applied around a RequestHandler.
    Shorthand for @Route(method = HttpMethod.OPTIONS, path = "…").
    Shorthand for @Route(method = HttpMethod.PATCH, path = "…").
     
    Shorthand for @Route(method = HttpMethod.POST, path = "…").
    Shorthand for @Route(method = HttpMethod.PURGE, path = "…").
    Shorthand for @Route(method = HttpMethod.PUT, path = "…").
    HTTP method and path for a class-based RequestHandler.
    Boot-time resolution of Route from a handler class (direct @Route or shorthand).
    Shorthand for @Route(method = HttpMethod.TRACE, path = "…").
    Marks a RequestHandler subclass as a WebSocket endpoint.