Uses of Interface
org.spincast.core.routing.Route
Packages that use Route
Package
Description
-
Uses of Route in org.spincast.core.routing
Methods in org.spincast.core.routing that return RouteModifier and TypeMethodDescriptionCreates and returns the route without adding it to the router.Gets a route using itsrouteId.RouteHandlerMatch.getSourceRoute()The route associated with this match.Methods in org.spincast.core.routing that return types with arguments of type RouteModifier and TypeMethodDescriptionRouter.getGlobalAfterFiltersRoutes()Gets the global "after" filters.Router.getGlobalBeforeFiltersRoutes()Gets the global "before" filters.Router.getMainRoutes()Gets the main routes.Methods in org.spincast.core.routing with parameters of type Route -
Uses of Route in org.spincast.plugins.openapi.bottomup
Methods in org.spincast.plugins.openapi.bottomup with parameters of type RouteModifier and TypeMethodDescriptionprotected voidSpincastOpenApiManagerDefault.addConsumesAnnotationToHandlerMethod(List<Annotation> handlerMethodAnnotations, Specs specs, Route<R> route) protected StringSpincastOpenApiManagerDefault.createOperationId(Route<R> route, HttpMethod httpMethod) protected booleanSpincastOpenApiManagerDefault.isToHideFromHttpMethodAndPath(Route<R> route, HttpMethod httpMethod) protected booleanSpincastOpenApiManagerDefault.isToHideFromId(Route<R> route) -
Uses of Route in org.spincast.plugins.routing
Classes in org.spincast.plugins.routing that implement RouteMethods in org.spincast.plugins.routing that return RouteModifier and TypeMethodDescriptionSpincastRouter.createHttpRouteFromWebsocketRoute(WebsocketRoute<R, W> websocketRoute) RouteFactory.createRoute(String id, boolean isWebsocketRoute, boolean isResourceRoute, StaticResource<R> staticResource, boolean isSpicastCoreRouteOrPluginRoute, Set<HttpMethod> httpMethods, String path, Set<RoutingType> routingTypes, List<Handler<R>> beforeFilters, Handler<R> mainHandler, List<Handler<R>> afterFilters, int position, Set<String> acceptedContentTypes, Set<String> filterIdsToSkip, boolean skipResources, Object specs, Object[] specsParameters, boolean specsIgnore, Set<String> classes) RouteHandlerMatchDefault.getSourceRoute()Methods in org.spincast.plugins.routing that return types with arguments of type RouteModifier and TypeMethodDescriptionSpincastRouter.getGlobalAfterFiltersPerPosition()SpincastRouter.getGlobalAfterFiltersRoutes()SpincastRouter.getGlobalBeforeFiltersPerPosition()SpincastRouter.getGlobalBeforeFiltersRoutes()SpincastRouter.getMainRoutes()Methods in org.spincast.plugins.routing with parameters of type RouteModifier and TypeMethodDescriptionvoidRouteHandlerMatchFactory.create(Route<R> sourceRoute, Handler<R> routeHandler, Map<String, String> params, int position) protected RouteHandlerMatch<R>SpincastRouter.createNoMatchingParamsHandlerMatch(Route<R> route, String id, Handler<R> handler, int position) Creates an handler match with no matching params.protected List<RouteHandlerMatch<R>>SpincastRouter.createRegularHandlerMatches(RoutingType routingType, Route<R> route, HttpMethod httpMethod, List<String> acceptedContentTypes, URL url, int position) Get the matches (filters and main handle) if the route matches the URL and HTTP method, or returns NULL otherwise.protected booleanSpincastRouter.isMustSkipResourceRequest(Route<R> mainRoute, Route<R> filterRoute) protected booleanSpincastRouter.isRouteMatchAcceptedContentType(Route<R> route, List<String> requestContentTypes) protected booleanSpincastRouter.isRouteMatchHttpMethod(Route<R> route, HttpMethod httpMethod) Validate if a route matches the given HTTP method.protected booleanSpincastRouter.isRoutingTypeMatch(RoutingType routingType, Route<R> route) Constructors in org.spincast.plugins.routing with parameters of type Route