Class ServiceInstanceCustomProperty
- java.lang.Object
-
- lumis.portal.structure.sync.model.serviceinstance.ServiceInstanceCustomProperty
-
- All Implemented Interfaces:
ICustomEquivalence
public class ServiceInstanceCustomProperty extends Object implements ICustomEquivalence
Service instance custom property model.- Since:
- 6.2.0
- Version:
- $Revision: 18622 $ $Date: 2016-03-31 10:52:10 -0300 (Thu, 31 Mar 2016) $
- See Also:
ServiceInstance
,IServiceInstanceManager
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ServiceInstanceCustomProperty.ServiceInstanceCustomPropertyComparator
-
Constructor Summary
Constructors Constructor Description ServiceInstanceCustomProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
Returns the id.String
getName()
Returns the name.ServiceInstance
getServiceInstance()
Returns the serviceInstance.String
getValue()
Returns the value.boolean
isEquivalent(Object obj)
Returns whether this object is equivalent to the given object.void
setId(String id)
Sets the id.void
setName(String name)
Sets the name.void
setServiceInstance(ServiceInstance serviceInstance)
Sets the serviceInstance.void
setValue(String value)
Sets the value.
-
-
-
Method Detail
-
getId
public String getId()
Returns the id.- Returns:
- the id
- Since:
- 6.2.0
-
setId
public void setId(String id)
Sets the id.- Parameters:
id
- the id value to set.- Since:
- 6.2.0
-
getServiceInstance
public ServiceInstance getServiceInstance()
Returns the serviceInstance.- Returns:
- the serviceInstance
- Since:
- 6.2.0
-
setServiceInstance
public void setServiceInstance(ServiceInstance serviceInstance)
Sets the serviceInstance.- Parameters:
serviceInstance
- the serviceInstance value to set.- Since:
- 6.2.0
-
getName
public String getName()
Returns the name.- Returns:
- the name
- Since:
- 6.2.0
-
setName
public void setName(String name)
Sets the name.- Parameters:
name
- the name value to set.- Since:
- 6.2.0
-
getValue
public String getValue()
Returns the value.- Returns:
- the value
- Since:
- 6.2.0
-
setValue
public void setValue(String value)
Sets the value.- Parameters:
value
- the value value to set.- Since:
- 6.2.0
-
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.
-
-