Uses of Class
org.forgerock.json.resource.RequestType
-
Packages that use RequestType Package Description org.forgerock.json.resource Classes and interfaces for core types including connections, request handlers, resources, and their exceptions. -
-
Uses of RequestType in org.forgerock.json.resource
Methods in org.forgerock.json.resource that return RequestType Modifier and Type Method Description RequestType
ActionRequest. getRequestType()
RequestType
CreateRequest. getRequestType()
RequestType
DeleteRequest. getRequestType()
RequestType
PatchRequest. getRequestType()
RequestType
QueryRequest. getRequestType()
RequestType
ReadRequest. getRequestType()
RequestType
Request. getRequestType()
Returns the type of this request.RequestType
UpdateRequest. getRequestType()
static RequestType
RequestType. valueOf(String name)
Returns the enum constant of this type with the specified name.static RequestType[]
RequestType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.forgerock.json.resource with parameters of type RequestType Modifier and Type Method Description static FilterCondition
Filters. matchRequestType(RequestType... types)
Returns aFilterCondition
which will only match requests whose type is contained intypes
.Method parameters in org.forgerock.json.resource with type arguments of type RequestType Modifier and Type Method Description static FilterCondition
Filters. matchRequestType(Set<RequestType> types)
Returns aFilterCondition
which will only match requests whose type is contained intypes
.
-