Uses of Interface
org.forgerock.json.resource.UpdateRequest
-
Packages that use UpdateRequest Package Description org.forgerock.authz.filter.crest.api This package defines the authorization API interfaces for use in a CREST environment.org.forgerock.json.resource Classes and interfaces for core types including connections, request handlers, resources, and their exceptions.org.forgerock.openam.rest.resource This package contains classes for the handling of REST request to CREST Resource endpoints with the concept of realms in OpenAM built in. -
-
Uses of UpdateRequest in org.forgerock.authz.filter.crest.api
Methods in org.forgerock.authz.filter.crest.api with parameters of type UpdateRequest Modifier and Type Method Description Promise<AuthorizationResult,ResourceException>CrestAuthorizationModule. authorizeUpdate(Context context, UpdateRequest request)Authorizes a received REST update request. -
Uses of UpdateRequest in org.forgerock.json.resource
Methods in org.forgerock.json.resource that return UpdateRequest Modifier and Type Method Description UpdateRequestUpdateRequest. addField(String... fields)UpdateRequestUpdateRequest. 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(CreateRequest createRequest)Returns a new update request built based on the provided create request.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.UpdateRequestUpdateRequest. setAdditionalParameter(String name, String value)UpdateRequestUpdateRequest. setContent(JsonValue content)Sets the content of the JSON resource to be replaced.UpdateRequestUpdateRequest. setPreferredLocales(PreferredLocales preferredLocales)UpdateRequestUpdateRequest. setResourcePath(String path)UpdateRequestUpdateRequest. setResourcePath(ResourcePath path)UpdateRequestUpdateRequest. setResourceVersion(Version resourceVersion)UpdateRequestUpdateRequest. 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 UpdateRequest Modifier and Type Method Description static UpdateRequestRequests. copyOfUpdateRequest(UpdateRequest request)Returns a copy of the provided update request.Promise<ResourceResponse,ResourceException>Filter. filterUpdate(Context context, UpdateRequest request, RequestHandler next)Filters an update request.Promise<ResourceResponse,ResourceException>ResourceApiVersionRoutingFilter. filterUpdate(Context context, UpdateRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>ResourceApiVersionSpecificationFilter. filterUpdate(Context context, UpdateRequest request, RequestHandler next)Promise<ResourceResponse,ResourceException>FilterChain. handleUpdate(Context context, UpdateRequest request)default Promise<ResourceResponse,ResourceException>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.Promise<ResourceResponse,ResourceException>Router. handleUpdate(Context context, UpdateRequest request)ResourceResponseSynchronousRequestHandler. handleUpdate(Context context, UpdateRequest request)Updates a JSON resource by replacing its existing content with new content.ResourceResponseAbstractAsynchronousConnection. update(Context context, UpdateRequest request)ResourceResponseAbstractConnectionWrapper. update(Context context, UpdateRequest request)Updates a JSON resource by replacing its existing content with new content.ResourceResponseConnection. update(Context context, UpdateRequest request)Updates a JSON resource by replacing its existing content with new content.Promise<ResourceResponse,ResourceException>AbstractConnectionWrapper. updateAsync(Context context, UpdateRequest request)Asynchronously updates a JSON resource by replacing its existing content with new content.Promise<ResourceResponse,ResourceException>Connection. updateAsync(Context context, UpdateRequest request)Asynchronously updates a JSON resource by replacing its existing content with new content.default Promise<ResourceResponse,ResourceException>CollectionResourceProvider. updateInstance(Context context, String resourceId, UpdateRequest request)Updatesan existing resource within the collection.Promise<ResourceResponse,ResourceException>MemoryBackend. updateInstance(Context context, String id, UpdateRequest request)Updatesan existing resource within the collection.default Promise<ResourceResponse,ResourceException>SingletonResourceProvider. updateInstance(Context context, UpdateRequest request)Updatesthe single resource instance.RRequestVisitor. visitUpdateRequest(P p, UpdateRequest request)Visits an update request. -
Uses of UpdateRequest in org.forgerock.openam.rest.resource
Methods in org.forgerock.openam.rest.resource with parameters of type UpdateRequest Modifier and Type Method Description Promise<ResourceResponse,ResourceException>RestrictedTokenContextFilter. filterUpdate(Context context, UpdateRequest request, RequestHandler next)
-