Class PatchOperation
- java.lang.Object
-
- org.openstack4j.openstack.image.v2.domain.PatchOperation
-
- All Implemented Interfaces:
Serializable,ModelEntity
public class PatchOperation extends Object implements ModelEntity
Representation of a json patch operation for an openstack image update- Author:
- emjburns
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPatchOperation.OperationType
-
Constructor Summary
Constructors Constructor Description PatchOperation()PatchOperation(PatchOperation.OperationType op, String path)PatchOperation(PatchOperation.OperationType op, String path, Object value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PatchOperation.OperationTypegetOp()StringgetPath()ObjectgetValue()voidsetOp(PatchOperation.OperationType op)voidsetPath(String path)voidsetValue(Object value)StringtoString()
-
-
-
Constructor Detail
-
PatchOperation
public PatchOperation()
-
PatchOperation
public PatchOperation(PatchOperation.OperationType op, String path, Object value)
-
PatchOperation
public PatchOperation(PatchOperation.OperationType op, String path)
-
-
Method Detail
-
getOp
public PatchOperation.OperationType getOp()
-
setOp
public void setOp(PatchOperation.OperationType op)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getValue
public Object getValue()
-
setValue
public void setValue(Object value)
-
-