Class Router
- All Implemented Interfaces:
RequestHandler
,Describable<ApiDescription,
,Request> Describable.Listener
route matcher
and a corresponding
handler, when routing a request the router will call
RouteMatcher.evaluate(org.forgerock.services.context.Context, R)
for each
registered route and use the returned RouteMatcher
to determine
which route best matches the request.
Routes may be added and removed from a router as follows:
Handler users = ...; Router router = new Router(); RouteMatcher routeOne = RouteMatchers.requestUriMatcher(EQUALS, "users"); RouteMatcher routeTwo = RouteMatchers.requestUriMatcher(EQUALS, "users/{userId}"); router.addRoute(routeOne, users); router.addRoute(routeTwo, users); // Deregister a route. router.removeRoute(routeOne, routeTwo);
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
Represents a URI template string that will be used to match and route incoming requests.Nested classes/interfaces inherited from interface org.forgerock.services.descriptor.Describable
Describable.Listener
-
Field Summary
Fields inherited from class org.forgerock.services.routing.AbstractRouter
api, thisRouterUriMatcher
-
Constructor Summary
ConstructorDescriptionRouter()
Creates a new router with no routes defined.Creates a new router containing the same routes and default route as the provided router. -
Method Summary
Modifier and TypeMethodDescriptionaddRoute
(RoutingMode mode, Router.UriTemplate uriTemplate, RequestHandler handler) Adds a new route to this router for the provided request handler.addRoute
(Version version, CollectionResourceProvider provider) Adds a new route to this router for the provided collection resource provider.addRoute
(Version version, RequestHandler handler) Adds a new route to this router for the provided request handler.addRoute
(Version version, SingletonResourceProvider provider) Adds a new route to this router for the provided singleton resource provider.addRoute
(Router.UriTemplate uriTemplate, CollectionResourceProvider provider) Adds a new route to this router for the provided collection resource provider.addRoute
(Router.UriTemplate uriTemplate, SingletonResourceProvider provider) Adds a new route to this router for the provided singleton resource provider.protected Pair<RouteMatcher<Request>,
RequestHandler> Return aDescribable
handler that returns thisAbstractRouter
's internal api description from theDescribable.handleApiRequest(Context, Object)
method.protected Router
getThis()
Returns thisAbstractRouter
instance, typed correctly.handleAction
(Context context, ActionRequest request) Handles performing an action on a resource, and optionally returns an associated result.handleApiRequest
(Context context, Request request) Handle a request for the API Descriptor.handleCreate
(Context context, CreateRequest request) Adds a new JSON resource, returning aPromise
that will be completed when the resource has been added.handleDelete
(Context context, DeleteRequest request) Deletes a JSON resource, returning aPromise
that will be completed when the resource has been deleted.handlePatch
(Context context, PatchRequest request) Updates a JSON resource by applying a set of changes to its existing content, returning aPromise
that will be completed when the resource has been updated.handleQuery
(Context context, QueryRequest request, QueryResourceHandler handler) Searches for all JSON resources matching a user specified set of criteria, returning aPromise
that will be completed when the search has completed.handleRead
(Context context, ReadRequest request) Reads a JSON resource, returning aPromise
that will be completed when the resource has been read.handleUpdate
(Context context, UpdateRequest request) Updates a JSON resource by replacing its existing content with new content, returning aPromise
that will be completed when the resource has been updated.protected RouteMatcher<Request>
uriMatcher
(RoutingMode mode, String pattern) Create a URI matcher suitable for the request type<R>
.static Router.UriTemplate
uriTemplate
(String template) Creates aRouter.UriTemplate
from a URI template string that will be used to match and route incoming requests.Methods inherited from class org.forgerock.services.routing.AbstractRouter
addAllRoutes, addDescriptorListener, addRoute, api, buildApi, getBestApiRoute, getBestRoute, getRoutes, notifyDescriptorChange, removeAllRoutes, removeDescriptorListener, removeRoute, setDefaultRoute
-
Constructor Details
-
Router
public Router()Creates a new router with no routes defined. -
Router
Creates a new router containing the same routes and default route as the provided router. Changes to the returned router's routing table will not impact the provided router.- Parameters:
router
- The router to be copied.
-
-
Method Details
-
getThis
Description copied from class:AbstractRouter
Returns thisAbstractRouter
instance, typed correctly.- Specified by:
getThis
in classAbstractRouter<Router,
Request, RequestHandler, ApiDescription> - Returns:
- This
AbstractRouter
instance.
-
uriMatcher
Description copied from class:AbstractRouter
Create a URI matcher suitable for the request type<R>
.- Specified by:
uriMatcher
in classAbstractRouter<Router,
Request, RequestHandler, ApiDescription> - Parameters:
mode
- The routing mode.pattern
- The pattern.- Returns:
- The matcher.
-
addRoute
public RouteMatcher<Request> addRoute(Router.UriTemplate uriTemplate, CollectionResourceProvider provider) Adds a new route to this router for the provided collection resource provider. New routes may be added while this router is processing requests.The provided URI template must match the resource collection itself, not resource instances. For example:
CollectionResourceProvider users = ...; Router router = new Router(); // This is valid usage: the template matches the resource collection. router.addRoute(Router.uriTemplate("users"), users); // This is invalid usage: the template matches resource instances. router.addRoute(Router.uriTemplate("users/{userId}"), users);
- Parameters:
uriTemplate
- The URI template which request resource names must match.provider
- The collection resource provider to which matching requests will be routed.- Returns:
- The
RouteMatcher
for the route that can be used to remove the route at a later point.
-
addRoute
public RouteMatcher<Request> addRoute(Router.UriTemplate uriTemplate, SingletonResourceProvider provider) Adds a new route to this router for the provided singleton resource provider. New routes may be added while this router is processing requests.- Parameters:
uriTemplate
- The URI template which request resource names must match.provider
- The singleton resource provider to which matching requests will be routed.- Returns:
- The
RouteMatcher
for the route that can be used to remove the route at a later point.
-
addRoute
public RouteMatcher<Request> addRoute(RoutingMode mode, Router.UriTemplate uriTemplate, RequestHandler handler) Adds a new route to this router for the provided request handler. New routes may be added while this router is processing requests.- Parameters:
mode
- Indicates how the URI template should be matched against resource names.uriTemplate
- The URI template which request resource names must match.handler
- The request handler to which matching requests will be routed.- Returns:
- The
RouteMatcher
for the route that can be used to remove the route at a later point.
-
uriTemplate
Creates aRouter.UriTemplate
from a URI template string that will be used to match and route incoming requests.- Parameters:
template
- The URI template.- Returns:
- A
UriTemplate
instance.
-
addRoute
Adds a new route to this router for the provided collection resource provider. New routes may be added while this router is processing requests.- Parameters:
version
- The resource API version the the request must match.provider
- The collection resource provider to which matching requests will be routed.- Returns:
- The
RouteMatcher
for the route that can be used to remove the route at a later point.
-
addRoute
Adds a new route to this router for the provided singleton resource provider. New routes may be added while this router is processing requests.- Parameters:
version
- The resource API version the the request must match.provider
- The singleton resource provider to which matching requests will be routed.- Returns:
- The
RouteMatcher
for the route that can be used to remove the route at a later point.
-
addRoute
Adds a new route to this router for the provided request handler. New routes may be added while this router is processing requests.- Parameters:
version
- The resource API version the the request must match.handler
- The request handler to which matching requests will be routed.- Returns:
- The
RouteMatcher
for the route that can be used to remove the route at a later point.
-
handleAction
public Promise<ActionResponse,ResourceException> handleAction(Context context, ActionRequest request) Description copied from interface:RequestHandler
Handles performing an action on a resource, and optionally returns an associated result. The execution of an action is allowed to incur side effects.Actions are parametric; a set of named parameters is provided as input to the action. The action result is a JSON object structure composed of basic Java types; its overall structure is defined by a specific implementation.
On completion, the action result (or null) must be used to complete the returned
Promise
. On failure, the returnedPromise
must be completed with the exception.Action expects failure exceptions as follows:
ForbiddenException
if access to the resource is forbidden.NotSupportedException
if the requested functionality is not implemented/supportedBadRequestException
if the passed identifier, parameters or filter is invalidNotFoundException
if the specified resource could not be found.- Specified by:
handleAction
in interfaceRequestHandler
- Parameters:
context
- The request server context, such as associated principal.request
- The action request.- Returns:
- A
Promise
containing the result of the operation.
-
handleCreate
public Promise<ResourceResponse,ResourceException> handleCreate(Context context, CreateRequest request) Description copied from interface:RequestHandler
Adds a new JSON resource, returning aPromise
that will be completed when the resource has been added.Create expects failure exceptions as follows:
CreateNotSupportedException
if create is not implemented or supported by the RequestHandler.ForbiddenException
if access to the resource is forbidden.NotSupportedException
if the requested functionality is not implemented/supportedPreconditionFailedException
if a resource with the same ID already existsBadRequestException
if the passed identifier or value is invalidNotFoundException
if the specified id could not be resolved, for example when an intermediate resource in the hierarchy does not exist.
- Specified by:
handleCreate
in interfaceRequestHandler
- Parameters:
context
- The request server context, such as associated principal.request
- The create request.- Returns:
- A
Promise
containing the result of the operation.
-
handleDelete
public Promise<ResourceResponse,ResourceException> handleDelete(Context context, DeleteRequest request) Description copied from interface:RequestHandler
Deletes a JSON resource, returning aPromise
that will be completed when the resource has been deleted.Delete expects failure exceptions as follows:
ForbiddenException
if access to the resource is forbiddenNotSupportedException
if the requested functionality is not implemented/supportedBadRequestException
if the passed identifier is invalidNotFoundException
if the specified resource could not be foundPreconditionRequiredException
if version is required, but isnull
PreconditionFailedException
if version did not match the existing resource.
- Specified by:
handleDelete
in interfaceRequestHandler
- Parameters:
context
- The request server context, such as associated principal.request
- The delete request.- Returns:
- A
Promise
containing the result of the operation.
-
handlePatch
public Promise<ResourceResponse,ResourceException> handlePatch(Context context, PatchRequest request) Description copied from interface:RequestHandler
Updates a JSON resource by applying a set of changes to its existing content, returning aPromise
that will be completed when the resource has been updated.Patch expects failure exceptions as follows:
ForbiddenException
if access to the resource is forbiddenNotSupportedException
if the requested functionality is not implemented/supportedPreconditionRequiredException
if version is required, but isnull
PreconditionFailedException
if version did not match the existing resourceBadRequestException
if the passed identifier or filter is invalidNotFoundException
if the specified resource could not be foundConflictException
if patch could not be applied for the given resource state.
- Specified by:
handlePatch
in interfaceRequestHandler
- Parameters:
context
- The request server context, such as associated principal.request
- The patch request.- Returns:
- A
Promise
containing the result of the operation.
-
handleQuery
public Promise<QueryResponse,ResourceException> handleQuery(Context context, QueryRequest request, QueryResourceHandler handler) Description copied from interface:RequestHandler
Searches for all JSON resources matching a user specified set of criteria, returning aPromise
that will be completed when the search has completed.Implementations must invoke
QueryResourceHandler.handleResource(ResourceResponse)
for each resource which matches the query criteria. Once all matching resources have been returned implementations are required to return either aQueryResponse
if the query has completed successfully, orResourceException
if the query did not complete successfully (even if some matching resources were returned).Query expects failure exceptions as follows:
ForbiddenException
if access to the resource is forbiddenNotSupportedException
if the requested functionality is not implemented/supportedBadRequestException
if the passed identifier, parameters or filter is invalidNotFoundException
if the specified resource could not be found
- Specified by:
handleQuery
in interfaceRequestHandler
- Parameters:
context
- The request server context, such as associated principal.request
- The query request.handler
- The query resource handler to be notified for each matching resource.- Returns:
- A
Promise
containing the result of the operation.
-
handleRead
Description copied from interface:RequestHandler
Reads a JSON resource, returning aPromise
that will be completed when the resource has been read.Read expects failure exceptions as follows:
ForbiddenException
if access to the resource is forbidden.NotSupportedException
if the requested functionality is not implemented/supportedBadRequestException
if the passed identifier or filter is invalidNotFoundException
if the specified resource could not be found.
- Specified by:
handleRead
in interfaceRequestHandler
- Parameters:
context
- The request server context, such as associated principal.request
- The read request.- Returns:
- A
Promise
containing the result of the operation.
-
handleUpdate
public Promise<ResourceResponse,ResourceException> handleUpdate(Context context, UpdateRequest request) Description copied from interface:RequestHandler
Updates a JSON resource by replacing its existing content with new content, returning aPromise
that will be completed when the resource has been updated.Update expects failure the following failure exceptions:
ForbiddenException
if access to the resource is forbiddenNotSupportedException
if the requested functionality is not implemented/supportedPreconditionRequiredException
if version is required, but isnull
PreconditionFailedException
if version did not match the existing resourceBadRequestException
if the passed identifier or filter is invalidNotFoundException
if the specified resource could not be found.
- Specified by:
handleUpdate
in interfaceRequestHandler
- Parameters:
context
- The request server context, such as associated principal.request
- The update request.- Returns:
- A
Promise
containing the result of the operation.
-
handleApiRequest
Description copied from interface:Describable
Handle a request for the API Descriptor. This method should not do any computation, but should return the already computed descriptor.- Specified by:
handleApiRequest
in interfaceDescribable<ApiDescription,
Request> - Overrides:
handleApiRequest
in classAbstractRouter<Router,
Request, RequestHandler, ApiDescription> - Parameters:
context
- The request context.request
- The request.- Returns:
- The descriptor.
-
getSelfApiHandler
Description copied from class:AbstractRouter
Return aDescribable
handler that returns thisAbstractRouter
's internal api description from theDescribable.handleApiRequest(Context, Object)
method. All other methods should throw anUnsupportedOperationException
, as they should never be used.- Specified by:
getSelfApiHandler
in classAbstractRouter<Router,
Request, RequestHandler, ApiDescription> - Returns:
- The describable handler.
-