Package io.jans.scim.model.scim2.patch
Class PatchOperation
- java.lang.Object
-
- io.jans.scim.model.scim2.patch.PatchOperation
-
public class PatchOperation extends Object
Represents a patch operation as per section 4 of RFC 6902. See alsoPatchRequest
.
-
-
Constructor Summary
Constructors Constructor Description PatchOperation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getOperation()
String
getPath()
PatchOperationType
getType()
Object
getValue()
void
setOperation(String operation)
void
setPath(String path)
void
setValue(Object value)
-
-
-
Method Detail
-
setValue
public void setValue(Object value)
-
getValue
public Object getValue()
-
getOperation
public String getOperation()
-
setOperation
public void setOperation(String operation)
-
getPath
public String getPath()
-
getType
public PatchOperationType getType()
-
setPath
public void setPath(String path)
-
-