Class LiveSyncDelta
- java.lang.Object
-
- org.identityconnectors.framework.common.objects.LiveSyncDelta
-
- Direct Known Subclasses:
SyncDelta
public class LiveSyncDelta extends Object
Represents a change to an object in a resource.- See Also:
LiveSyncApiOp,LiveSyncOp
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)ConnectorObjectgetObject()Returns the connector object that changed.ObjectClassgetObjectClass()If the change described by thisSyncDelta.DELETEand the deleted object value isnull, this method returns the ObjectClass of the deleted object.UidgetUid()Returns the Uid of the connector object that changed.inthashCode()StringtoString()
-
-
-
Method Detail
-
getObjectClass
public ObjectClass getObjectClass()
If the change described by thisSyncDelta.DELETEand the deleted object value isnull, this method returns the ObjectClass of the deleted object. If operation syncsObjectClass.ALLthis must be set, otherwise this method can returnnull.- Returns:
- the ObjectClass of the deleted object.
-
getUid
public Uid getUid()
Returns the Uid of the connector object that changed.- Returns:
- The Uid.
-
getObject
public ConnectorObject getObject()
Returns the connector object that changed. This may be null in the case of delete.- Returns:
- The object or possibly null if this represents a delete.
-
-