Package org.opennms.netmgt.dao.hibernate
Class AlarmDaoHibernate
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- org.opennms.netmgt.dao.hibernate.AbstractDaoHibernate<OnmsAlarm,java.lang.Integer>
-
- org.opennms.netmgt.dao.hibernate.AlarmDaoHibernate
-
- All Implemented Interfaces:
AlarmDao
,LegacyOnmsDao<OnmsAlarm,java.lang.Integer>
,OnmsDao<OnmsAlarm,java.lang.Integer>
,org.springframework.beans.factory.InitializingBean
public class AlarmDaoHibernate extends AbstractDaoHibernate<OnmsAlarm,java.lang.Integer> implements AlarmDao
AlarmDaoHibernate class.
- Version:
- $Id: $
- Author:
- ranger
-
-
Field Summary
-
Fields inherited from class org.opennms.netmgt.dao.hibernate.AbstractDaoHibernate
m_criteriaConverter
-
-
Constructor Summary
Constructors Constructor Description AlarmDaoHibernate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OnmsAlarm
findByReductionKey(java.lang.String reductionKey)
java.util.List<OnmsAlarm>
getAlarmsForEventParameters(java.util.Map<java.lang.String,java.lang.String> eventParameters)
java.util.List<HeatMapElement>
getHeatMapItemsForEntity(java.lang.String entityNameColumn, java.lang.String entityIdColumn, boolean processAcknowledgedAlarms, java.lang.String restrictionColumn, java.lang.String restrictionValue, java.lang.String... groupByColumns)
java.util.List<AlarmSummary>
getNodeAlarmSummaries()
Get the list of current - not yet acknowledged - alarms per node with severity greater than normal, reflecting the max severity, the minimum last event time and alarm count; ordered by the oldest.java.util.List<AlarmSummary>
getNodeAlarmSummariesIncludeAcknowledgedOnes(java.util.List<java.lang.Integer> nodeIds)
Get the list of current alarms per node with severity not equal to cleared, reflecting the max severity, the minimum last event time and alarm count.java.util.List<SituationSummary>
getSituationSummaries()
Get the list of current - not yet acknowledged - situations with severity greater than normal;-
Methods inherited from class org.opennms.netmgt.dao.hibernate.AbstractDaoHibernate
buildHibernateCallback, bulkDelete, clear, countAll, countMatching, countMatching, delete, delete, deleteAll, find, find, findAll, findMatching, findMatching, findObjects, findUnique, flush, get, initDao, initialize, load, lock, merge, queryInt, queryInt, save, saveOrUpdate, update
-
Methods inherited from class org.springframework.orm.hibernate3.support.HibernateDaoSupport
checkDaoConfig, convertHibernateAccessException, createHibernateTemplate, getHibernateTemplate, getSession, getSession, getSessionFactory, releaseSession, setHibernateTemplate, setSessionFactory
-
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.dao.api.LegacyOnmsDao
countMatching, findMatching
-
Methods inherited from interface org.opennms.netmgt.dao.api.OnmsDao
clear, countAll, countMatching, delete, delete, findAll, findMatching, flush, get, initialize, load, lock, save, saveOrUpdate, update
-
-
-
-
Method Detail
-
findByReductionKey
public OnmsAlarm findByReductionKey(java.lang.String reductionKey)
- Specified by:
findByReductionKey
in interfaceAlarmDao
-
getNodeAlarmSummariesIncludeAcknowledgedOnes
public java.util.List<AlarmSummary> getNodeAlarmSummariesIncludeAcknowledgedOnes(java.util.List<java.lang.Integer> nodeIds)
Get the list of current alarms per node with severity not equal to cleared, reflecting the max severity, the minimum last event time and alarm count. The alarm count only considers not yet acknowledged alarms, but the max severity is calculated overall (including acknowledged) alarms.- Specified by:
getNodeAlarmSummariesIncludeAcknowledgedOnes
in interfaceAlarmDao
- Parameters:
nodeIds
- The nodeIds you want to restrict the AlarmSummary calculation to. Must not be NULL!
-
getNodeAlarmSummaries
public java.util.List<AlarmSummary> getNodeAlarmSummaries()
Get the list of current - not yet acknowledged - alarms per node with severity greater than normal, reflecting the max severity, the minimum last event time and alarm count; ordered by the oldest.
- Specified by:
getNodeAlarmSummaries
in interfaceAlarmDao
- Returns:
- A list of alarm summaries.
-
getSituationSummaries
public java.util.List<SituationSummary> getSituationSummaries()
Get the list of current - not yet acknowledged - situations with severity greater than normal;
- Specified by:
getSituationSummaries
in interfaceAlarmDao
- Returns:
- A list of situation summaries.
-
getHeatMapItemsForEntity
public java.util.List<HeatMapElement> getHeatMapItemsForEntity(java.lang.String entityNameColumn, java.lang.String entityIdColumn, boolean processAcknowledgedAlarms, java.lang.String restrictionColumn, java.lang.String restrictionValue, java.lang.String... groupByColumns)
- Specified by:
getHeatMapItemsForEntity
in interfaceAlarmDao
-
getAlarmsForEventParameters
public java.util.List<OnmsAlarm> getAlarmsForEventParameters(java.util.Map<java.lang.String,java.lang.String> eventParameters)
- Specified by:
getAlarmsForEventParameters
in interfaceAlarmDao
-
-