Class AbstractConnectionWrapper<C extends Connection>
- Type Parameters:
C- The type of wrapped connection.
- All Implemented Interfaces:
Closeable,AutoCloseable,Connection,Describable<org.forgerock.api.models.ApiDescription,Request>
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.forgerock.services.descriptor.Describable
Describable.Listener -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractConnectionWrapper(C connection) Creates a new connection wrapper. -
Method Summary
Modifier and TypeMethodDescriptionaction(Context context, ActionRequest request) Performs an action against a specific resource, or set of resources.actionAsync(Context context, ActionRequest request) Asynchronously performs an action against a specific resource, or set of resources.voidaddDescriptorListener(Describable.Listener listener) Add a listener for API Descriptor changes.org.forgerock.api.models.ApiDescriptionapi(ApiProducer<org.forgerock.api.models.ApiDescription> producer) Provide the API description for the component.voidclose()Releases any resources associated with this connection.create(Context context, CreateRequest request) Adds a new JSON resource.createAsync(Context context, CreateRequest request) Asynchronously adds a new JSON resource.delete(Context context, DeleteRequest request) Deletes a JSON resource.deleteAsync(Context context, DeleteRequest request) Asynchronously deletes a JSON resource.org.forgerock.api.models.ApiDescriptionhandleApiRequest(Context context, Request request) Handle a request for the API Descriptor.booleanisClosed()Indicates whether or not this connection has been explicitly closed by callingclose.booleanisValid()Returnstrueif this connection has not been closed and no fatal errors have been detected.patch(Context context, PatchRequest request) Updates a JSON resource by applying a set of changes to its existing content.patchAsync(Context context, PatchRequest request) Asynchronously updates a JSON resource by applying a set of changes to its existing content.query(Context context, QueryRequest request, Collection<? super ResourceResponse> results) Searches for all JSON resources matching a user specified set of criteria, and places the results in the provided collection.query(Context context, QueryRequest request, QueryResourceHandler handler) Searches for all JSON resources matching a user specified set of criteria, and returns aPromisethat will be completed with the results of the search.queryAsync(Context context, QueryRequest request, QueryResourceHandler handler) Asynchronously searches for all JSON resources matching a user specified set of criteria, and returns aPromisethat will be completed with the results of the search.read(Context context, ReadRequest request) Reads a JSON resource.readAsync(Context context, ReadRequest request) Asynchronously reads a JSON resource.voidremoveDescriptorListener(Describable.Listener listener) Remove a listener from API Descriptor changes.protected ContextOptional Context-transformation function if the implementer has requirements to override theContextprovided in theConnection's method invocations.update(Context context, UpdateRequest request) Updates a JSON resource by replacing its existing content with new content.updateAsync(Context context, UpdateRequest request) Asynchronously updates a JSON resource by replacing its existing content with new content.
-
Field Details
-
connection
The wrapped connection.
-
-
Constructor Details
-
AbstractConnectionWrapper
Creates a new connection wrapper.- Parameters:
connection- The connection to be wrapped.
-
-
Method Details
-
transform
Optional Context-transformation function if the implementer has requirements to override theContextprovided in theConnection's method invocations.The default implementation is a pass-through no-op.
- Parameters:
context- the request context- Returns:
- the transformed context
-
action
Performs an action against a specific resource, or set of resources. Bulk updates are an example of an action request.The default implementation is to delegate.
- Specified by:
actionin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The action request.- Returns:
- A JSON object containing the result of the action, the content of which is specified by the action.
- Throws:
ResourceException- If the action could not be performed.
-
actionAsync
public Promise<ActionResponse,ResourceException> actionAsync(Context context, ActionRequest request) Asynchronously performs an action against a specific resource, or set of resources. Bulk updates are an example of an action request.The default implementation is to delegate.
- Specified by:
actionAsyncin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The action request.- Returns:
- A future representing the result of the request.
-
close
public void close()Releases any resources associated with this connection. For physical connections to a server this will mean that the underlying socket is closed.Other connection implementations may behave differently. For example, a pooled connection will be released and returned to its connection pool.
Calling
closeon a connection that is already closed has no effect.The default implementation is to delegate.
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein interfaceConnection
-
create
Adds a new JSON resource.The default implementation is to delegate.
- Specified by:
createin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The create request.- Returns:
- The newly created JSON resource.
- Throws:
ResourceException- If the JSON resource could not be created.
-
createAsync
public Promise<ResourceResponse,ResourceException> createAsync(Context context, CreateRequest request) Asynchronously adds a new JSON resource.The default implementation is to delegate.
- Specified by:
createAsyncin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The create request.- Returns:
- A future representing the result of the request.
-
delete
Deletes a JSON resource.The default implementation is to delegate.
- Specified by:
deletein interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The delete request.- Returns:
- The deleted JSON resource.
- Throws:
ResourceException- If the JSON resource could not be deleted.
-
deleteAsync
public Promise<ResourceResponse,ResourceException> deleteAsync(Context context, DeleteRequest request) Asynchronously deletes a JSON resource.The default implementation is to delegate.
- Specified by:
deleteAsyncin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The delete request.- Returns:
- A future representing the result of the request.
-
isClosed
public boolean isClosed()Indicates whether or not this connection has been explicitly closed by callingclose. This method will not returntrueif a fatal error has occurred on the connection unlessclosehas been called.The default implementation is to delegate.
- Specified by:
isClosedin interfaceConnection- Returns:
trueif this connection has been explicitly closed by callingclose, orfalseotherwise.
-
isValid
public boolean isValid()Returnstrueif this connection has not been closed and no fatal errors have been detected. This method is guaranteed to returnfalseonly when it is called after the methodclosehas been called.The default implementation is to delegate.
- Specified by:
isValidin interfaceConnection- Returns:
trueif this connection is valid,falseotherwise.
-
patch
Updates a JSON resource by applying a set of changes to its existing content.The default implementation is to delegate.
- Specified by:
patchin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The update request.- Returns:
- The updated JSON resource.
- Throws:
ResourceException- If the JSON resource could not be updated.
-
patchAsync
public Promise<ResourceResponse,ResourceException> patchAsync(Context context, PatchRequest request) Asynchronously updates a JSON resource by applying a set of changes to its existing content.The default implementation is to delegate.
- Specified by:
patchAsyncin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The patch request.- Returns:
- A future representing the result of the request.
-
query
public QueryResponse query(Context context, QueryRequest request, QueryResourceHandler handler) throws ResourceException Searches for all JSON resources matching a user specified set of criteria, and returns aPromisethat will be completed with the results of the search.Result processing happens-before this method returns to the caller.
The default implementation is to delegate.
- Specified by:
queryin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The query request.handler- A query resource handler which can be used to process matching resources as they are received.- Returns:
- The query result.
- Throws:
ResourceException- If the query could not be performed.
-
query
public QueryResponse query(Context context, QueryRequest request, Collection<? super ResourceResponse> results) throws ResourceException Searches for all JSON resources matching a user specified set of criteria, and places the results in the provided collection.The default implementation is to delegate.
- Specified by:
queryin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The query request.results- A collection into which matching resources will be added as they are received.- Returns:
- The query result.
- Throws:
ResourceException- If the query could not be performed.
-
queryAsync
public Promise<QueryResponse,ResourceException> queryAsync(Context context, QueryRequest request, QueryResourceHandler handler) Asynchronously searches for all JSON resources matching a user specified set of criteria, and returns aPromisethat will be completed with the results of the search.Result processing happens-before the returned future completes.
The default implementation is to delegate.
- Specified by:
queryAsyncin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The create request.handler- A non-nullquery resource handler which should be used to process matching resources as they are received.- Returns:
- A future representing the result of the request.
-
read
Reads a JSON resource.The default implementation is to delegate.
- Specified by:
readin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The read request.- Returns:
- The JSON resource.
- Throws:
ResourceException- If the JSON resource could not be read.
-
readAsync
Asynchronously reads a JSON resource.The default implementation is to delegate.
- Specified by:
readAsyncin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The read request.- Returns:
- A future representing the result of the request.
-
update
Updates a JSON resource by replacing its existing content with new content.The default implementation is to delegate.
- Specified by:
updatein interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The update request.- Returns:
- The updated JSON resource.
- Throws:
ResourceException- If the JSON resource could not be updated.
-
updateAsync
public Promise<ResourceResponse,ResourceException> updateAsync(Context context, UpdateRequest request) Asynchronously updates a JSON resource by replacing its existing content with new content.The default implementation is to delegate.
- Specified by:
updateAsyncin interfaceConnection- Parameters:
context- The request context, such as associated principal.request- The update request.- Returns:
- A future representing the result of the request.
-
api
public org.forgerock.api.models.ApiDescription api(ApiProducer<org.forgerock.api.models.ApiDescription> producer) Description copied from interface:DescribableProvide the API description for the component. This method should perform the heavy-lifting of computing the API descriptor, and should be expected to be called rarely. Upstream handlers should call this method in order to compose all of their downstream API Descriptors into a single descriptor.- Specified by:
apiin interfaceDescribable<org.forgerock.api.models.ApiDescription,Request> - Parameters:
producer- The API producer that provides general information to be built into the descriptor.- Returns:
- The description object.
-
handleApiRequest
Description copied from interface:DescribableHandle a request for the API Descriptor. This method should not do any computation, but should return the already computed descriptor.- Specified by:
handleApiRequestin interfaceDescribable<org.forgerock.api.models.ApiDescription,Request> - Parameters:
context- The request context.request- The request.- Returns:
- The descriptor.
-
addDescriptorListener
Description copied from interface:DescribableAdd a listener for API Descriptor changes. The described object should call all the listeners.- Specified by:
addDescriptorListenerin interfaceDescribable<org.forgerock.api.models.ApiDescription,Request> - Parameters:
listener- The listener.
-
removeDescriptorListener
Description copied from interface:DescribableRemove a listener from API Descriptor changes.- Specified by:
removeDescriptorListenerin interfaceDescribable<org.forgerock.api.models.ApiDescription,Request> - Parameters:
listener- The listener.
-