Interface TopologyVisitor
-
public interface TopologyVisitor
An interface to allow visiting the different types that may be stored in thetopology message's
payload
.There should be one visit method here for each of the implementations of
OnmsTopologyRef
.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
visit(OnmsTopologyEdge edge)
default void
visit(OnmsTopologyPort port)
default void
visit(OnmsTopologyVertex vertex)
-
-
-
Method Detail
-
visit
default void visit(OnmsTopologyVertex vertex)
-
visit
default void visit(OnmsTopologyPort port)
-
visit
default void visit(OnmsTopologyEdge edge)
-
-