Interface LldpTopologyService
-
- All Superinterfaces:
TopologyService
- All Known Implementing Classes:
LldpTopologyServiceImpl
public interface LldpTopologyService extends TopologyService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
delete(int nodeid)
List<LldpElementTopologyEntity>
findAllLldpElements()
List<TopologyConnection<LldpLinkTopologyEntity,LldpLinkTopologyEntity>>
match()
void
reconcile(int nodeId, Date now)
void
store(int nodeId, LldpElement element)
void
store(int nodeId, LldpLink link)
-
Methods inherited from interface org.opennms.netmgt.enlinkd.service.api.TopologyService
hasUpdates, parseUpdates, refresh, updatesAvailable
-
-
-
-
Method Detail
-
delete
void delete(int nodeid)
-
reconcile
void reconcile(int nodeId, Date now)
-
store
void store(int nodeId, LldpLink link)
-
store
void store(int nodeId, LldpElement element)
-
findAllLldpElements
List<LldpElementTopologyEntity> findAllLldpElements()
-
match
List<TopologyConnection<LldpLinkTopologyEntity,LldpLinkTopologyEntity>> match()
-
-