Uses of Class
de.captaingoldfish.scim.sdk.common.constants.enums.PatchOp
-
Packages that use PatchOp Package Description de.captaingoldfish.scim.sdk.common.constants.enums de.captaingoldfish.scim.sdk.common.request -
-
Uses of PatchOp in de.captaingoldfish.scim.sdk.common.constants.enums
Methods in de.captaingoldfish.scim.sdk.common.constants.enums that return PatchOp Modifier and Type Method Description static PatchOpPatchOp. getByValue(String value)static PatchOpPatchOp. valueOf(String name)Returns the enum constant of this type with the specified name.static PatchOp[]PatchOp. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of PatchOp in de.captaingoldfish.scim.sdk.common.request
Methods in de.captaingoldfish.scim.sdk.common.request that return PatchOp Modifier and Type Method Description PatchOpPatchRequestOperation. getOp()Each PATCH operation object MUST have exactly one "op" member, whose value indicates the operation to perform and MAY be one of "add", "remove", or "replace"
(This will never return null on server side for schema validation is executed before this method is called)Methods in de.captaingoldfish.scim.sdk.common.request with parameters of type PatchOp Modifier and Type Method Description voidPatchRequestOperation. setOp(PatchOp patchOp)Each PATCH operation object MUST have exactly one "op" member, whose value indicates the operation to perform and MAY be one of "add", "remove", or "replace"Constructors in de.captaingoldfish.scim.sdk.common.request with parameters of type PatchOp Constructor Description PatchRequestOperation(String path, PatchOp op, List<String> values, com.fasterxml.jackson.databind.JsonNode valueNode)
-