Uses of Interface
org.forgerock.json.resource.UpdateRequest
Packages that use UpdateRequest
Package
Description
Classes and interfaces for core types including connections, request
handlers, resources, and their exceptions.
-
Uses of UpdateRequest in org.forgerock.json.resource
Methods in org.forgerock.json.resource that return UpdateRequestModifier and TypeMethodDescriptionUpdateRequest.addField(JsonPointer... fields) static UpdateRequestRequests.copyOfUpdateRequest(UpdateRequest request) Returns a copy of the provided update request.static UpdateRequestRequests.newUpdateRequest(String resourceContainer, String resourceId, JsonValue newContent) Returns a new update request with the provided resource container path, resource ID, and new JSON content.static UpdateRequestRequests.newUpdateRequest(String resourcePath, JsonValue newContent) Returns a new update request with the provided resource path and new JSON content.static UpdateRequestRequests.newUpdateRequest(ResourcePath resourceContainer, String resourceId, JsonValue newContent) Returns a new update request with the provided resource container path, resource ID, and new JSON content.static UpdateRequestRequests.newUpdateRequest(ResourcePath resourcePath, JsonValue newContent) Returns a new update request with the provided resource path and new JSON content.UpdateRequest.setAdditionalParameter(String name, String value) UpdateRequest.setContent(JsonValue content) Sets the content of the JSON resource to be replaced.UpdateRequest.setPreferredLocales(PreferredLocales preferredLocales) UpdateRequest.setResourcePath(String path) UpdateRequest.setResourcePath(ResourcePath path) UpdateRequest.setResourceVersion(Version resourceVersion) UpdateRequest.setRevision(String version) Sets the expected version information associated with the JSON resource to be updated.Methods in org.forgerock.json.resource with parameters of type UpdateRequestModifier and TypeMethodDescriptionstatic UpdateRequestRequests.copyOfUpdateRequest(UpdateRequest request) Returns a copy of the provided update request.Filter.filterUpdate(Context context, UpdateRequest request, RequestHandler next) Filters an update request.ResourceApiVersionRoutingFilter.filterUpdate(Context context, UpdateRequest request, RequestHandler next) AbstractRequestHandler.handleUpdate(Context context, UpdateRequest request) Updates a JSON resource by replacing its existing content with new content, returning aPromisethat will be completed when the resource has been updated.FilterChain.handleUpdate(Context context, UpdateRequest request) RequestHandler.handleUpdate(Context context, UpdateRequest request) Updates a JSON resource by replacing its existing content with new content, returning aPromisethat will be completed when the resource has been updated.Router.handleUpdate(Context context, UpdateRequest request) SynchronousRequestHandler.handleUpdate(Context context, UpdateRequest request) Updates a JSON resource by replacing its existing content with new content.AbstractAsynchronousConnection.update(Context context, UpdateRequest request) AbstractConnectionWrapper.update(Context context, UpdateRequest request) Updates a JSON resource by replacing its existing content with new content.Connection.update(Context context, UpdateRequest request) Updates a JSON resource by replacing its existing content with new content.AbstractConnectionWrapper.updateAsync(Context context, UpdateRequest request) Asynchronously updates a JSON resource by replacing its existing content with new content.Connection.updateAsync(Context context, UpdateRequest request) Asynchronously updates a JSON resource by replacing its existing content with new content.CollectionResourceProvider.updateInstance(Context context, String resourceId, UpdateRequest request) Updatesan existing resource within the collection.MemoryBackend.updateInstance(Context context, String id, UpdateRequest request) Updatesan existing resource within the collection.SingletonResourceProvider.updateInstance(Context context, UpdateRequest request) Updatesthe single resource instance.RequestVisitor.visitUpdateRequest(P p, UpdateRequest request) Visits an update request.