public interface SingletonResourceProvider
NOTE: field filtering alters the structure of a JSON resource and MUST only be performed once while processing a request. It is therefore the responsibility of front-end implementations (e.g. HTTP listeners, Servlets, etc) to perform field filtering. Request handler and resource provider implementations SHOULD NOT filter fields, but MAY choose to optimise their processing in order to return a resource containing only the fields targeted by the field filters.
Modifier and Type | Method and Description |
---|---|
default Promise<ActionResponse,ResourceException> |
actionInstance(Context context,
ActionRequest request)
Performs the provided
action against the single resource instance. |
default Promise<ResourceResponse,ResourceException> |
patchInstance(Context context,
PatchRequest request)
Patches the single resource instance. |
default Promise<ResourceResponse,ResourceException> |
readInstance(Context context,
ReadRequest request)
Reads the single resource instance. |
default Promise<ResourceResponse,ResourceException> |
updateInstance(Context context,
UpdateRequest request)
Updates the single resource instance. |
default Promise<ActionResponse,ResourceException> actionInstance(Context context, ActionRequest request)
action
against the single resource instance.context
- The request server context.request
- The action request.Promise
containing the result of the operation.RequestHandler.handleAction(Context, ActionRequest)
default Promise<ResourceResponse,ResourceException> patchInstance(Context context, PatchRequest request)
Patches
the single resource instance.context
- The request server context.request
- The patch request.Promise
containing the result of the operation.RequestHandler.handlePatch(Context, PatchRequest)
default Promise<ResourceResponse,ResourceException> readInstance(Context context, ReadRequest request)
Reads
the single resource instance.context
- The request server context.request
- The read request.Promise
containing the result of the operation.RequestHandler.handleRead(Context, ReadRequest)
default Promise<ResourceResponse,ResourceException> updateInstance(Context context, UpdateRequest request)
Updates
the single resource instance.context
- The request server context.request
- The update request.Promise
containing the result of the operation.RequestHandler.handleUpdate(Context, UpdateRequest)
Copyright © 2010-2018, ForgeRock All Rights Reserved.