Class RoutesCollectionProvider
java.lang.Object
org.forgerock.openig.handler.router.RoutesCollectionProvider
- All Implemented Interfaces:
CollectionResourceProvider
CREST handler used to manage the collection of routes deployed by a
RouterHandler.-
Method Summary
Modifier and TypeMethodDescriptioncreateInstance(Context context, CreateRequest request) Addsa new resource instance to the collection.deleteInstance(Context context, String resourceId, DeleteRequest request) Removesa resource instance from the collection.queryCollection(Context context, QueryRequest request, QueryResourceHandler resourceHandler) Searchesthe collection for all resources which match the query request criteria.readInstance(Context context, String resourceId, ReadRequest request) Readsan existing resource within the collection.Returns the provider that manages the resources of a route.updateInstance(Context context, String resourceId, UpdateRequest request) Updatesan existing resource within the collection.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.forgerock.json.resource.CollectionResourceProvider
actionCollection, actionInstance, patchInstance
-
Method Details
-
createInstance
public Promise<ResourceResponse,ResourceException> createInstance(Context context, CreateRequest request) Description copied from interface:CollectionResourceProviderAddsa new resource instance to the collection.Create requests are targeted at the collection itself and may include a user-provided resource ID for the new resource as part of the request itself. The user-provider resource ID may be accessed using the method
CreateRequest.getNewResourceId().- Specified by:
createInstancein interfaceCollectionResourceProvider- Parameters:
context- The request server context.request- The create request.- Returns:
- A
Promisecontaining the result of the operation. - See Also:
-
deleteInstance
public Promise<ResourceResponse,ResourceException> deleteInstance(Context context, String resourceId, DeleteRequest request) Description copied from interface:CollectionResourceProviderRemovesa resource instance from the collection.- Specified by:
deleteInstancein interfaceCollectionResourceProvider- Parameters:
context- The request server context.resourceId- The ID of the targeted resource within the collection.request- The delete request.- Returns:
- A
Promisecontaining the result of the operation. - See Also:
-
queryCollection
public Promise<QueryResponse,ResourceException> queryCollection(Context context, QueryRequest request, QueryResourceHandler resourceHandler) Description copied from interface:CollectionResourceProviderSearchesthe collection for all resources which match the query request criteria.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 aQueryResponseif the query has completed successfully, orResourceExceptionif the query did not complete successfully (even if some matching resources were returned).- Specified by:
queryCollectionin interfaceCollectionResourceProvider- Parameters:
context- The request server context.request- The query request.resourceHandler- The query resource handler to be notified for each matching resource.- Returns:
- A
Promisecontaining the result of the operation. - See Also:
-
readInstance
public Promise<ResourceResponse,ResourceException> readInstance(Context context, String resourceId, ReadRequest request) Description copied from interface:CollectionResourceProviderReadsan existing resource within the collection.- Specified by:
readInstancein interfaceCollectionResourceProvider- Parameters:
context- The request server context.resourceId- The ID of the targeted resource within the collection.request- The read request.- Returns:
- A
Promisecontaining the result of the operation. - See Also:
-
updateInstance
public Promise<ResourceResponse,ResourceException> updateInstance(Context context, String resourceId, UpdateRequest request) Description copied from interface:CollectionResourceProviderUpdatesan existing resource within the collection.- Specified by:
updateInstancein interfaceCollectionResourceProvider- Parameters:
context- The request server context.resourceId- The ID of the targeted resource within the collection.request- The update request.- Returns:
- A
Promisecontaining the result of the operation. - See Also:
-
resources
Returns the provider that manages the resources of a route. This method needs to be public to be picked up by thePathannotation.- Returns:
- the provider that manages the resources of a route
-