Class PatchOperation
- java.lang.Object
-
- org.gluu.oxtrust.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 StringgetOperation()StringgetPath()PatchOperationTypegetType()ObjectgetValue()voidsetOperation(String operation)voidsetPath(String path)voidsetValue(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)
-
-