Class ServiceInstanceDependency
- java.lang.Object
-
- lumis.portal.structure.sync.model.serviceinstance.ServiceInstanceDependency
-
- All Implemented Interfaces:
ICustomEquivalence
public class ServiceInstanceDependency extends Object implements ICustomEquivalence
Service instance dependency model.Documentation in this class focus synchronization behavior. About the use behind the fields in the portal, see
ServiceInstanceDependencyConfig
.- Since:
- 6.2.0
- Version:
- $Revision: 23770 $ $Date: 2020-04-16 18:29:05 -0300 (Thu, 16 Apr 2020) $
- See Also:
ServiceInstance
,ServiceInstanceDependencyConfig
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ServiceInstanceDependency.AddServiceInstanceDependencyChannelTemplateLink
static class
ServiceInstanceDependency.ServiceInstanceDependencyComparator
-
Constructor Summary
Constructors Constructor Description ServiceInstanceDependency()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDependencyType()
ServiceInstance
getDependentServiceInstance()
String
getId()
String
getServiceInstanceId()
boolean
isEquivalent(Object obj)
Returns whether this object is equivalent to the given object.void
setDependentServiceInstance(ServiceInstance dependentServiceInstance)
void
setId(String id)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getServiceInstanceId
public String getServiceInstanceId()
-
getDependentServiceInstance
public ServiceInstance getDependentServiceInstance()
-
setDependentServiceInstance
public void setDependentServiceInstance(ServiceInstance dependentServiceInstance)
-
getDependencyType
public String getDependencyType()
-
isEquivalent
public boolean isEquivalent(Object obj)
Description copied from interface:ICustomEquivalence
Returns whether this object is equivalent to the given object. If the object is equivalent, it will not need to be updated during synchronization.- Specified by:
isEquivalent
in interfaceICustomEquivalence
- Parameters:
obj
- the object to compare with.- Returns:
- true if the objects are equivalent, false otherwise.
-
-