Class AbstractPatchItem<T>
- java.lang.Object
-
- org.apache.syncope.common.lib.request.AbstractPatch
-
- org.apache.syncope.common.lib.request.AbstractPatchItem<T>
-
- All Implemented Interfaces:
Serializable
,BaseBean
- Direct Known Subclasses:
AbstractReplacePatchItem
,LongPatchItem
,StringPatchItem
public abstract class AbstractPatchItem<T> extends AbstractPatch
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
AbstractPatchItem.Builder<T,P extends AbstractPatchItem<T>,B extends AbstractPatchItem.Builder<T,P,B>>
-
Constructor Summary
Constructors Constructor Description AbstractPatchItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
T
getValue()
int
hashCode()
void
setValue(T value)
-
Methods inherited from class org.apache.syncope.common.lib.request.AbstractPatch
getOperation, setOperation
-
-
-
-
Method Detail
-
getValue
public T getValue()
-
setValue
public void setValue(T value)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractPatch
-
equals
public boolean equals(Object obj)
- Overrides:
equals
in classAbstractPatch
-
-