public final class Requests extends Object
Modifier and Type | Method and Description |
---|---|
static ActionRequest |
copyOfActionRequest(ActionRequest request)
Returns a copy of the provided action request.
|
static Request |
copyOfApiRequest(Request request)
Returns a copy of the provided api request.
|
static CreateRequest |
copyOfCreateRequest(CreateRequest request)
Returns a copy of the provided create request.
|
static DeleteRequest |
copyOfDeleteRequest(DeleteRequest request)
Returns a copy of the provided delete request.
|
static PatchRequest |
copyOfPatchRequest(PatchRequest request)
Returns a copy of the provided patch request.
|
static QueryRequest |
copyOfQueryRequest(QueryRequest request)
Returns a copy of the provided query request.
|
static ReadRequest |
copyOfReadRequest(ReadRequest request)
Returns a copy of the provided read request.
|
static UpdateRequest |
copyOfUpdateRequest(UpdateRequest request)
Returns a copy of the provided update request.
|
static ActionRequest |
newActionRequest(ResourcePath resourcePath,
String actionId)
Returns a new action request with the provided resource path and action
ID.
|
static ActionRequest |
newActionRequest(ResourcePath resourceContainer,
String resourceId,
String actionId)
Returns a new action request with the provided resource container path,
resource ID, and action ID.
|
static ActionRequest |
newActionRequest(String resourcePath,
String actionId)
Returns a new action request with the provided resource path and action
ID.
|
static ActionRequest |
newActionRequest(String resourceContainer,
String resourceId,
String actionId)
Returns a new action request with the provided resource container path,
resource ID, and action ID.
|
static Request |
newApiRequest(ResourcePath path)
Returns a new API request with the provided path.
|
static CreateRequest |
newCreateRequest(ResourcePath resourceContainer,
JsonValue content)
Returns a new create request with the provided resource path, and JSON
content.
|
static CreateRequest |
newCreateRequest(ResourcePath resourceContainer,
String newResourceId,
JsonValue content)
Returns a new create request with the provided resource path, new
resource ID, and JSON content.
|
static CreateRequest |
newCreateRequest(String resourceContainer,
JsonValue content)
Returns a new create request with the provided resource path, and JSON
content.
|
static CreateRequest |
newCreateRequest(String resourceContainer,
String newResourceId,
JsonValue content)
Returns a new create request with the provided resource path, new
resource ID, and JSON content.
|
static DeleteRequest |
newDeleteRequest(ResourcePath resourcePath)
Returns a new delete request with the provided resource path.
|
static DeleteRequest |
newDeleteRequest(ResourcePath resourceContainer,
String resourceId)
Returns a new delete request with the provided resource container path,
and resource ID.
|
static DeleteRequest |
newDeleteRequest(String resourcePath)
Returns a new delete request with the provided resource path.
|
static DeleteRequest |
newDeleteRequest(String resourceContainer,
String resourceId)
Returns a new delete request with the provided resource container path,
and resource ID.
|
static PatchRequest |
newPatchRequest(ResourcePath resourcePath,
PatchOperation... operations)
Returns a new patch request with the provided resource path and JSON
patch operations.
|
static PatchRequest |
newPatchRequest(ResourcePath resourceContainer,
String resourceId,
PatchOperation... operations)
Returns a new patch request with the provided resource container path,
resource ID, and JSON patch operations.
|
static PatchRequest |
newPatchRequest(String resourcePath,
PatchOperation... operations)
Returns a new patch request with the provided resource path and JSON
patch operations.
|
static PatchRequest |
newPatchRequest(String resourceContainer,
String resourceId,
PatchOperation... operations)
Returns a new patch request with the provided resource container path,
resource ID, and JSON patch operations.
|
static QueryRequest |
newQueryRequest(ResourcePath resourceContainer)
Returns a new query request with the provided resource container path.
|
static QueryRequest |
newQueryRequest(String resourceContainer)
Returns a new query request with the provided resource container path.
|
static ReadRequest |
newReadRequest(ResourcePath resourcePath)
Returns a new read request with the provided resource path.
|
static ReadRequest |
newReadRequest(ResourcePath resourceContainer,
String resourceId)
Returns a new read request with the provided resource container path, and
resource ID.
|
static ReadRequest |
newReadRequest(String resourcePath)
Returns a new read request with the provided resource path.
|
static ReadRequest |
newReadRequest(String resourceContainer,
String resourceId)
Returns a new read request with the provided resource container path, and
resource ID.
|
static UpdateRequest |
newUpdateRequest(CreateRequest createRequest)
Returns a new update request built based on the provided create request.
|
static UpdateRequest |
newUpdateRequest(ResourcePath resourcePath,
JsonValue newContent)
Returns a new update request with the provided resource path and new JSON
content.
|
static UpdateRequest |
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 UpdateRequest |
newUpdateRequest(String resourcePath,
JsonValue newContent)
Returns a new update request with the provided resource path and new JSON
content.
|
static UpdateRequest |
newUpdateRequest(String resourceContainer,
String resourceId,
JsonValue newContent)
Returns a new update request with the provided resource container path,
resource ID, and new JSON content.
|
public static ActionRequest copyOfActionRequest(ActionRequest request)
request
- The action request to be copied.public static CreateRequest copyOfCreateRequest(CreateRequest request)
request
- The create request to be copied.public static DeleteRequest copyOfDeleteRequest(DeleteRequest request)
request
- The delete request to be copied.public static PatchRequest copyOfPatchRequest(PatchRequest request)
request
- The patch request to be copied.public static QueryRequest copyOfQueryRequest(QueryRequest request)
request
- The query request to be copied.public static ReadRequest copyOfReadRequest(ReadRequest request)
request
- The read request to be copied.public static UpdateRequest copyOfUpdateRequest(UpdateRequest request)
request
- The update request to be copied.public static Request copyOfApiRequest(Request request)
request
- The api request to be copied.public static ActionRequest newActionRequest(String resourcePath, String actionId)
newActionRequest("users/1", actionId);Is equivalent to:
newActionRequest("users", "1", actionId);Except that the resource ID is already URL encoded in the first form.
resourcePath
- The URL-encoded resource path.actionId
- The action ID.public static ActionRequest newActionRequest(ResourcePath resourcePath, String actionId)
resourcePath
- The parsed resource path.actionId
- The action ID.public static ActionRequest newActionRequest(String resourceContainer, String resourceId, String actionId)
newActionRequest("users", "1", "someAction");Is equivalent to:
newActionRequest("users/1", "someAction");Except that the resource ID is already URL encoded in the second form.
resourceContainer
- The URL-encoded path of the resource container.resourceId
- The URL decoded ID of the resource.actionId
- The action ID.public static ActionRequest newActionRequest(ResourcePath resourceContainer, String resourceId, String actionId)
resourceContainer
- The parsed path of the resource container.resourceId
- The URL decoded ID of the resource.actionId
- The action ID.public static CreateRequest newCreateRequest(String resourceContainer, JsonValue content)
null
new resource ID,
indicating that the server will be responsible for generating the ID of
the new resource. Invoking this method as follows:
newCreateRequest("users/1", content);Is equivalent to:
newCreateRequest("users", "1", content);Except that the resource ID is already URL encoded in the first form.
resourceContainer
- The URL-encoded path of the resource container beneath which the new
resource should be created.content
- The JSON content.public static CreateRequest newCreateRequest(ResourcePath resourceContainer, JsonValue content)
null
new resource ID,
indicating that the server will be responsible for generating the ID of
the new resource.resourceContainer
- The parsed path of the resource container beneath which the
new resource should be created.content
- The JSON content.public static CreateRequest newCreateRequest(String resourceContainer, String newResourceId, JsonValue content)
newCreateRequest("users", "1", content);Is equivalent to:
newCreateRequest("users", content).setNewResourceId("1");Except that the resource ID is already URL encoded in the second form.
resourceContainer
- The URL-encoded path of the resource container beneath which
the new resource should be created.newResourceId
- The URL decoded client provided ID of the resource to be
created, or null
if the server should be responsible
for generating the resource ID.content
- The JSON content.public static CreateRequest newCreateRequest(ResourcePath resourceContainer, String newResourceId, JsonValue content)
resourceContainer
- The parsed path of the resource container beneath which the
new resource should be created.newResourceId
- The URL decoded client provided ID of the resource to be
created, or null
if the server should be responsible
for generating the resource ID.content
- The JSON content.public static DeleteRequest newDeleteRequest(String resourcePath)
newDeleteRequest("users/1");Is equivalent to:
newDeleteRequest("users", "1");Except that the resource ID is already URL encoded in the first form.
resourcePath
- The URL-encoded resource path.public static DeleteRequest newDeleteRequest(ResourcePath resourcePath)
resourcePath
- The parsed resource path.public static DeleteRequest newDeleteRequest(String resourceContainer, String resourceId)
newDeleteRequest("users", "1");Is equivalent to:
newDeleteRequest("users/1");Except that the resource ID is already URL encoded in the second form.
resourceContainer
- The URL-encoded path of the resource container.resourceId
- The URL decoded ID of the resource.public static DeleteRequest newDeleteRequest(ResourcePath resourceContainer, String resourceId)
resourceContainer
- The parsed path of the resource container.resourceId
- The URL decoded ID of the resource.public static PatchRequest newPatchRequest(String resourcePath, PatchOperation... operations)
newPatchRequest("users/1", operations);Is equivalent to:
newPatchRequest("users", "1", operations);Except that the resource ID is already URL encoded in the first form.
resourcePath
- The URL-encoded resource path.operations
- The JSON patch operations.public static PatchRequest newPatchRequest(ResourcePath resourcePath, PatchOperation... operations)
resourcePath
- The parsed resource path.operations
- The JSON patch operations.public static PatchRequest newPatchRequest(String resourceContainer, String resourceId, PatchOperation... operations)
newPatchRequest("users", "1", operations);Is equivalent to:
newPatchRequest("users/1", operations);Except that the resource ID is already URL encoded in the second form.
resourceContainer
- The URL-encoded path of the resource container.resourceId
- The URL decoded ID of the resource.operations
- The JSON patch operations.public static PatchRequest newPatchRequest(ResourcePath resourceContainer, String resourceId, PatchOperation... operations)
resourceContainer
- The parsed path of the resource container.resourceId
- The URL decoded ID of the resource.operations
- The JSON patch operations.public static QueryRequest newQueryRequest(String resourceContainer)
newQueryRequest("users");
resourceContainer
- The URL-encoded path of the resource container.public static QueryRequest newQueryRequest(ResourcePath resourceContainer)
newQueryRequest(ResourcePath.valueOf("users"));
resourceContainer
- The parsed path of the resource container.public static ReadRequest newReadRequest(String resourcePath)
newReadRequest("users/1");Is equivalent to:
newReadRequest("users", "1");Except that the resource ID is already URL encoded in the first form.
resourcePath
- The URL-encoded resource path.public static ReadRequest newReadRequest(ResourcePath resourcePath)
resourcePath
- The parsed resource path.public static ReadRequest newReadRequest(String resourceContainer, String resourceId)
newReadRequest("users", "1");Is equivalent to:
newReadRequest("users/1");Except that the resource ID is already URL encoded in the second form.
resourceContainer
- The URL-encoded path of the resource container.resourceId
- The URL decoded ID of the resource.public static ReadRequest newReadRequest(ResourcePath resourceContainer, String resourceId)
resourceContainer
- The parsed path of the resource container.resourceId
- The URL decoded ID of the resource.public static UpdateRequest newUpdateRequest(String resourcePath, JsonValue newContent)
newUpdateRequest("users/1", newContent);Is equivalent to:
newUpdateRequest("users", "1", newContent);Except that the resource ID is already URL encoded in the first form.
resourcePath
- The URL-encoded resource path.newContent
- The new JSON content.public static UpdateRequest newUpdateRequest(ResourcePath resourcePath, JsonValue newContent)
resourcePath
- The parsed resource path.newContent
- The new JSON content.public static UpdateRequest newUpdateRequest(CreateRequest createRequest)
createRequest
- The create request.public static UpdateRequest newUpdateRequest(String resourceContainer, String resourceId, JsonValue newContent)
newUpdateRequest("users", "1", newContent);Is equivalent to:
newUpdateRequest("users/1", newContent);Except that the resource ID is already URL encoded in the second form.
resourceContainer
- The URL-encoded path of the resource container.resourceId
- The URL decoded ID of the resource.newContent
- The new JSON content.public static UpdateRequest newUpdateRequest(ResourcePath resourceContainer, String resourceId, JsonValue newContent)
resourceContainer
- The parsed path of the resource container.resourceId
- The URL decoded ID of the resource.newContent
- The new JSON content.public static Request newApiRequest(ResourcePath path)
path
- The path.Copyright © 2010-2018, ForgeRock All Rights Reserved.