Package org.opennms.netmgt.model
Interface EntityVisitor
-
- All Known Implementing Classes:
AbstractEntityVisitor
,AddEventVisitor
,DeleteEventVisitor
,UpdateEventVisitor
public interface EntityVisitor
EntityVisitor interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visitIpInterface(OnmsIpInterface iface)
void
visitIpInterfaceComplete(OnmsIpInterface iface)
void
visitMonitoredService(OnmsMonitoredService monSvc)
void
visitMonitoredServiceComplete(OnmsMonitoredService monSvc)
void
visitNode(OnmsNode node)
void
visitNodeComplete(OnmsNode node)
void
visitSnmpInterface(OnmsEntity snmpIface)
void
visitSnmpInterfaceComplete(OnmsEntity snmpIface)
-
-
-
Method Detail
-
visitNode
void visitNode(OnmsNode node)
-
visitNodeComplete
void visitNodeComplete(OnmsNode node)
-
visitSnmpInterface
void visitSnmpInterface(OnmsEntity snmpIface)
-
visitSnmpInterfaceComplete
void visitSnmpInterfaceComplete(OnmsEntity snmpIface)
-
visitIpInterface
void visitIpInterface(OnmsIpInterface iface)
-
visitIpInterfaceComplete
void visitIpInterfaceComplete(OnmsIpInterface iface)
-
visitMonitoredService
void visitMonitoredService(OnmsMonitoredService monSvc)
-
visitMonitoredServiceComplete
void visitMonitoredServiceComplete(OnmsMonitoredService monSvc)
-
-