Class BusinessServiceChildEdgeEntity
- java.lang.Object
-
- org.opennms.netmgt.bsm.persistence.api.BusinessServiceEdgeEntity
-
- org.opennms.netmgt.bsm.persistence.api.BusinessServiceChildEdgeEntity
-
- All Implemented Interfaces:
EdgeEntity
@Entity public class BusinessServiceChildEdgeEntity extends BusinessServiceEdgeEntity
-
-
Field Summary
-
Fields inherited from class org.opennms.netmgt.bsm.persistence.api.BusinessServiceEdgeEntity
DEFAULT_WEIGHT
-
-
Constructor Summary
Constructors Constructor Description BusinessServiceChildEdgeEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
accept(EdgeEntityVisitor<T> visitor)
boolean
equalsDefinition(BusinessServiceEdgeEntity other)
Defines if the definition of the edge is equal to the given one.BusinessServiceEntity
getChild()
java.util.Set<java.lang.String>
getReductionKeys()
void
setChild(BusinessServiceEntity child)
java.lang.String
toString()
-
Methods inherited from class org.opennms.netmgt.bsm.persistence.api.BusinessServiceEdgeEntity
equals, getBusinessService, getId, getMapFunction, getWeight, hashCode, isEnabled, setBusinessService, setEnabled, setId, setMapFunction, setWeight
-
-
-
-
Method Detail
-
setChild
public void setChild(BusinessServiceEntity child)
-
getChild
public BusinessServiceEntity getChild()
-
getReductionKeys
public java.util.Set<java.lang.String> getReductionKeys()
- Specified by:
getReductionKeys
in interfaceEdgeEntity
- Overrides:
getReductionKeys
in classBusinessServiceEdgeEntity
-
toString
public java.lang.String toString()
- Overrides:
toString
in classBusinessServiceEdgeEntity
-
equalsDefinition
public boolean equalsDefinition(BusinessServiceEdgeEntity other)
Description copied from class:BusinessServiceEdgeEntity
Defines if the definition of the edge is equal to the given one. This is quite different than the equals method of the object itself.- Overrides:
equalsDefinition
in classBusinessServiceEdgeEntity
- Returns:
- true if equal, otherwise false
-
accept
public <T> T accept(EdgeEntityVisitor<T> visitor)
- Specified by:
accept
in interfaceEdgeEntity
- Overrides:
accept
in classBusinessServiceEdgeEntity
-
-