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 void
delete(int nodeid)
List<CdpElementTopologyEntity>
findAllCdpElements()
CdpElementDao
getCdpElementDao()
CdpLinkDao
getCdpLinkDao()
List<TopologyConnection<CdpLinkTopologyEntity,CdpLinkTopologyEntity>>
match()
void
reconcile(int nodeId, Date now)
protected void
saveCdpLink(int nodeId, CdpLink saveMe)
void
setCdpElementDao(CdpElementDao cdpElementDao)
void
setCdpLinkDao(CdpLinkDao cdpLinkDao)
void
store(int nodeId, CdpElement element)
void
store(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:
delete
in interfaceCdpTopologyService
-
reconcile
public void reconcile(int nodeId, Date now)
- Specified by:
reconcile
in interfaceCdpTopologyService
-
store
@Transactional public void store(int nodeId, CdpElement element)
- Specified by:
store
in interfaceCdpTopologyService
-
store
public void store(int nodeId, CdpLink link)
- Specified by:
store
in interfaceCdpTopologyService
-
saveCdpLink
@Transactional protected void saveCdpLink(int nodeId, CdpLink saveMe)
-
match
public List<TopologyConnection<CdpLinkTopologyEntity,CdpLinkTopologyEntity>> match()
- Specified by:
match
in interfaceCdpTopologyService
-
findAllCdpElements
public List<CdpElementTopologyEntity> findAllCdpElements()
- Specified by:
findAllCdpElements
in interfaceCdpTopologyService
-
getCdpLinkDao
public CdpLinkDao getCdpLinkDao()
-
setCdpLinkDao
public void setCdpLinkDao(CdpLinkDao cdpLinkDao)
-
getCdpElementDao
public CdpElementDao getCdpElementDao()
-
setCdpElementDao
public void setCdpElementDao(CdpElementDao cdpElementDao)
-
-