Class IsisTopologyServiceImpl
- java.lang.Object
-
- org.opennms.netmgt.enlinkd.service.impl.TopologyServiceImpl
-
- org.opennms.netmgt.enlinkd.service.impl.IsisTopologyServiceImpl
-
- All Implemented Interfaces:
IsisTopologyService
,TopologyService
public class IsisTopologyServiceImpl extends TopologyServiceImpl implements IsisTopologyService
-
-
Constructor Summary
Constructors Constructor Description IsisTopologyServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
delete(int nodeid)
List<IsIsElementTopologyEntity>
findAllIsIsElements()
IsIsElementDao
getIsisElementDao()
IsIsLinkDao
getIsisLinkDao()
List<TopologyConnection<IsIsLinkTopologyEntity,IsIsLinkTopologyEntity>>
match()
void
reconcile(int nodeId, Date now)
protected void
saveIsisLink(int nodeId, IsIsLink saveMe)
void
setIsisElementDao(IsIsElementDao isisElementDao)
void
setIsisLinkDao(IsIsLinkDao isisLinkDao)
void
store(int nodeId, IsIsElement element)
void
store(int nodeId, IsIsLink 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 interfaceIsisTopologyService
-
reconcile
public void reconcile(int nodeId, Date now)
- Specified by:
reconcile
in interfaceIsisTopologyService
-
store
public void store(int nodeId, IsIsLink link)
- Specified by:
store
in interfaceIsisTopologyService
-
saveIsisLink
@Transactional protected void saveIsisLink(int nodeId, IsIsLink saveMe)
-
store
@Transactional public void store(int nodeId, IsIsElement element)
- Specified by:
store
in interfaceIsisTopologyService
-
getIsisLinkDao
public IsIsLinkDao getIsisLinkDao()
-
setIsisLinkDao
public void setIsisLinkDao(IsIsLinkDao isisLinkDao)
-
getIsisElementDao
public IsIsElementDao getIsisElementDao()
-
setIsisElementDao
public void setIsisElementDao(IsIsElementDao isisElementDao)
-
findAllIsIsElements
public List<IsIsElementTopologyEntity> findAllIsIsElements()
- Specified by:
findAllIsIsElements
in interfaceIsisTopologyService
-
match
public List<TopologyConnection<IsIsLinkTopologyEntity,IsIsLinkTopologyEntity>> match()
- Specified by:
match
in interfaceIsisTopologyService
-
-