Class CdpTopologyServiceImpl
- java.lang.Object
-
- org.opennms.netmgt.enlinkd.service.impl.TopologyServiceImpl
-
- org.opennms.netmgt.enlinkd.service.impl.CdpTopologyServiceImpl
-
- All Implemented Interfaces:
CdpTopologyService,TopologyService
public class CdpTopologyServiceImpl extends TopologyServiceImpl implements CdpTopologyService
-
-
Constructor Summary
Constructors Constructor Description CdpTopologyServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(int nodeid)java.util.List<CdpElementTopologyEntity>findAllCdpElements()CdpElementDaogetCdpElementDao()CdpLinkDaogetCdpLinkDao()java.util.List<TopologyConnection<CdpLinkTopologyEntity,CdpLinkTopologyEntity>>match()voidreconcile(int nodeId, java.util.Date now)protected voidsaveCdpLink(int nodeId, CdpLink saveMe)voidsetCdpElementDao(CdpElementDao cdpElementDao)voidsetCdpLinkDao(CdpLinkDao cdpLinkDao)voidstore(int nodeId, CdpElement element)voidstore(int nodeId, CdpLink link)-
Methods inherited from class org.opennms.netmgt.enlinkd.service.impl.TopologyServiceImpl
getTopologyEntityCache, hasUpdates, parseUpdates, refresh, setTopologyEntityCache, updatesAvailable
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.opennms.netmgt.enlinkd.service.api.TopologyService
hasUpdates, parseUpdates, refresh, updatesAvailable
-
-
-
-
Method Detail
-
delete
public void delete(int nodeid)
- Specified by:
deletein interfaceCdpTopologyService
-
reconcile
public void reconcile(int nodeId, java.util.Date now)- Specified by:
reconcilein interfaceCdpTopologyService
-
store
@Transactional public void store(int nodeId, CdpElement element)- Specified by:
storein interfaceCdpTopologyService
-
store
public void store(int nodeId, CdpLink link)- Specified by:
storein interfaceCdpTopologyService
-
saveCdpLink
@Transactional protected void saveCdpLink(int nodeId, CdpLink saveMe)
-
match
public java.util.List<TopologyConnection<CdpLinkTopologyEntity,CdpLinkTopologyEntity>> match()
- Specified by:
matchin interfaceCdpTopologyService
-
findAllCdpElements
public java.util.List<CdpElementTopologyEntity> findAllCdpElements()
- Specified by:
findAllCdpElementsin interfaceCdpTopologyService
-
getCdpLinkDao
public CdpLinkDao getCdpLinkDao()
-
setCdpLinkDao
public void setCdpLinkDao(CdpLinkDao cdpLinkDao)
-
getCdpElementDao
public CdpElementDao getCdpElementDao()
-
setCdpElementDao
public void setCdpElementDao(CdpElementDao cdpElementDao)
-
-