Class ChildEdgeImpl
- java.lang.Object
-
- org.opennms.netmgt.bsm.service.internal.edge.AbstractEdge<BusinessServiceChildEdgeEntity>
-
- org.opennms.netmgt.bsm.service.internal.edge.ChildEdgeImpl
-
public class ChildEdgeImpl extends AbstractEdge<BusinessServiceChildEdgeEntity> implements ChildEdge
-
-
Field Summary
-
Fields inherited from interface org.opennms.netmgt.bsm.service.model.edge.Edge
DEFAULT_WEIGHT
-
-
Constructor Summary
Constructors Constructor Description ChildEdgeImpl(BusinessServiceManager manager, BusinessServiceChildEdgeEntity entity)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
accept(EdgeVisitor<T> visitor)
BusinessService
getChild()
String
getFriendlyName()
Method implementation for the friendly name used in the topology UI.Set<String>
getReductionKeys()
void
setChild(BusinessService child)
String
toString()
-
Methods inherited from class org.opennms.netmgt.bsm.service.internal.edge.AbstractEdge
delete, equals, getEntity, getId, getManager, getMapFunction, getOperationalStatus, getSource, getWeight, hashCode, setMapFunction, setSource, setWeight
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.opennms.netmgt.bsm.service.model.edge.Edge
delete, getId, getMapFunction, getOperationalStatus, getSource, getWeight, setMapFunction, setSource, setWeight
-
-
-
-
Constructor Detail
-
ChildEdgeImpl
public ChildEdgeImpl(BusinessServiceManager manager, BusinessServiceChildEdgeEntity entity)
-
-
Method Detail
-
getChild
public BusinessService getChild()
-
getReductionKeys
public Set<String> getReductionKeys()
- Specified by:
getReductionKeys
in interfaceEdge
-
setChild
public void setChild(BusinessService child)
-
toString
public String toString()
- Overrides:
toString
in classAbstractEdge<BusinessServiceChildEdgeEntity>
-
getFriendlyName
public String getFriendlyName()
Method implementation for the friendly name used in the topology UI. Since this value is not used for child Business Services this method always returnsnull
.- Specified by:
getFriendlyName
in interfaceEdge
- Returns:
- always null
- See Also:
Edge.getFriendlyName()
-
accept
public <T> T accept(EdgeVisitor<T> visitor)
-
-