Uses of Class
com.broadleafcommerce.metadata.route.builder.RouteSpec
-
Packages that use RouteSpec Package Description com.broadleafcommerce.metadata.route.builder -
-
Uses of RouteSpec in com.broadleafcommerce.metadata.route.builder
Subclasses of RouteSpec in com.broadleafcommerce.metadata.route.builder Modifier and Type Class Description static class
RouteSpec.RouteBooleanSpec
A specification extension forRouteSpec
that provides an entry-point to chain together predicates through methodsRouteSpec.RouteBooleanSpec.and()
,RouteSpec.RouteBooleanSpec.or()
, andRouteSpec.RouteBooleanSpec.negate()
.static class
RouteSpec.RouteBooleanSpec.RouteBooleanOpSpec
A specification extension forRouteSpec
that is returned byRouteSpec.RouteBooleanSpec
as a way of completing a predicate chain.Methods in com.broadleafcommerce.metadata.route.builder that return RouteSpec Modifier and Type Method Description RouteSpec
RouteSpec. clearScopes()
Clears the scopes for the route.RouteSpec
RouteSpec. componentId(String componentId)
Sets the component ID of the route.RouteSpec
RouteSpec. componentName(String componentName)
Sets the component name of the route.RouteSpec
RouteSpec. exact(boolean exact)
Sets whether or not the route must match exactly.RouteSpec
RouteSpec. order(int order)
Sets the absolute ordering of the route.RouteSpec
RouteSpec. path(String path)
Sets the path of the route.RouteSpec
RouteSpec. scope(String scope)
Adds the scope to the route.RouteSpec
RouteSpec. scopes(List<String> scopes)
Sets the scopes for the route.Method parameters in com.broadleafcommerce.metadata.route.builder with type arguments of type RouteSpec Modifier and Type Method Description RoutesSpec
RoutesSpec. route(String path, Function<RouteSpec,RouteSpec> fn)
Adds a newRouteSpec
with the provided path and configured by the provided function.RoutesSpec
RoutesSpec. route(String path, Function<RouteSpec,RouteSpec> fn)
Adds a newRouteSpec
with the provided path and configured by the provided function.RoutesSpec
RoutesSpec. route(Function<RouteSpec,RouteSpec> fn)
Adds a newRouteSpec
configured by the provided function.RoutesSpec
RoutesSpec. route(Function<RouteSpec,RouteSpec> fn)
Adds a newRouteSpec
configured by the provided function.
-