Uses of Annotation Interface
dev.relism.flash.routing.Route

Packages that use Route
  • Uses of Route in dev.relism.flash.ext.openapi

    Methods in dev.relism.flash.ext.openapi with parameters of type Route
    Modifier and Type
    Method
    Description
    void
    OpenApiBuilder.addOperation(Route route, ApiOperation op, Class<?> handlerClass)
     
  • Uses of Route in dev.relism.flash.routing

    Classes in dev.relism.flash.routing with annotations of type Route
    Modifier and Type
    Class
    Description
    @interface 
    Shorthand for @Route(method = HttpMethod.CONNECT, path = "…").
    @interface 
    Shorthand for @Route(method = HttpMethod.DELETE, path = "…").
    @interface 
    Shorthand for @Route(method = HttpMethod.GET, path = "…").
    @interface 
    Shorthand for @Route(method = HttpMethod.HEAD, path = "…").
    @interface 
    Shorthand for @Route(method = HttpMethod.OPTIONS, path = "…").
    @interface 
    Shorthand for @Route(method = HttpMethod.PATCH, path = "…").
    @interface 
    Shorthand for @Route(method = HttpMethod.POST, path = "…").
    @interface 
    Shorthand for @Route(method = HttpMethod.PURGE, path = "…").
    @interface 
    Shorthand for @Route(method = HttpMethod.PUT, path = "…").
    @interface 
    Shorthand for @Route(method = HttpMethod.TRACE, path = "…").
    @interface 
    Marks a RequestHandler subclass as a WebSocket endpoint.
    Methods in dev.relism.flash.routing that return Route
    Modifier and Type
    Method
    Description
    static Route
    Routes.of(Class<?> cls)
    Effective route for cls, or null.