Package lumis.portal.structure.sync
Interface ICustomEquivalence
-
- All Known Implementing Classes:
AccessControlList
,FileTransformation
,FileTransformationParameter
,InterfaceInstanceCustomProperty
,Property
,PropertyBag
,ServiceInstance
,ServiceInstanceCustomProperty
,ServiceInstanceDependency
,ServiceInstanceWorkflowPermissionRoleXml
,ServiceInstanceWorkflowPermissionXml
public interface ICustomEquivalence
Classes that implement this interface have a custom method for detecting equivalence.- Since:
- 6.2.0
- Version:
- $Revision: 14187 $ $Date: 2012-04-02 11:44:41 -0300 (Mon, 02 Apr 2012) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isEquivalent(Object obj)
Returns whether this object is equivalent to the given object.
-
-
-
Method Detail
-
isEquivalent
boolean isEquivalent(Object obj)
Returns whether this object is equivalent to the given object. If the object is equivalent, it will not need to be updated during synchronization.- Parameters:
obj
- the object to compare with.- Returns:
- true if the objects are equivalent, false otherwise.
- Since:
- 6.2.0
-
-