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

Packages that use Route
Package
Description
 
  • 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 = "…").
    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.