Class PatchHandler
- java.lang.Object
-
- de.captaingoldfish.scim.sdk.server.patch.PatchHandler
-
public class PatchHandler extends Object
author Pascal Knueppel
created at: 29.10.2019 - 09:40
this class is used to resolve patch operations on resources
-
-
Constructor Summary
Constructors Constructor Description PatchHandler(ResourceType resourceType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends ResourceNode>
TpatchResource(T resource, PatchOpRequest patchOpRequest)this method will execute the patch operation on the given resource
-
-
-
Constructor Detail
-
PatchHandler
public PatchHandler(ResourceType resourceType)
-
-
Method Detail
-
patchResource
public <T extends ResourceNode> T patchResource(T resource, PatchOpRequest patchOpRequest)
this method will execute the patch operation on the given resource- Parameters:
resource- the resource representation that should be patchedpatchOpRequest- the patch operation that should be executed on the resource- Returns:
- the patched resource
-
-