Package org.opennms.netmgt.dao.api
Interface LegacyOnmsDao<T,K extends java.io.Serializable>
-
- Type Parameters:
T
- The type of the Entity this DAO is intended to manage.K
- The key of the Entity.
- All Superinterfaces:
OnmsDao<T,K>
- All Known Subinterfaces:
AlarmDao
,EventDao
,IpInterfaceDao
,MonitoredServiceDao
,NodeDao
,NotificationDao
,OutageDao
,SnmpInterfaceDao
- All Known Implementing Classes:
AbstractMockDao
,AlarmDaoHibernate
,EventDaoHibernate
,IpInterfaceDaoHibernate
,MockAcknowledgmentDao
,MockAlarmAssociationDao
,MockAlarmDao
,MockApplicationDao
,MockAssetRecordDao
,MockCategoryDao
,MockDistPollerDao
,MockEventDao
,MockFilterFavoriteDao
,MockHwEntityAttributeTypeDao
,MockHwEntityDao
,MockIpInterfaceDao
,MockMemoDao
,MockMonitoredServiceDao
,MockMonitoringLocationDao
,MockMonitoringSystemDao
,MockNodeDao
,MockNotificationDao
,MockOutageDao
,MockPathOutageDao
,MockReportCatalogDao
,MockRequisitionedCategoryAssociationDao
,MockResourceReferenceDao
,MockServiceTypeDao
,MockSnmpInterfaceDao
,MockStatisticsReportDao
,MockUserNotificationDao
,MonitoredServiceDaoHibernate
,NodeDaoHibernate
,NotificationDaoHibernate
,OutageDaoHibernate
,SnmpInterfaceDaoHibernate
,UnimplementedIpInterfaceDao
,UnimplementedMonitoredServiceDao
public interface LegacyOnmsDao<T,K extends java.io.Serializable> extends OnmsDao<T,K>
Deprecated.DAO interfaces that inherit from this should be refactored to no longer use theOnmsCriteria
functions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description int
countMatching(OnmsCriteria onmsCrit)
Deprecated.useOnmsDao.countMatching(Criteria)
instead.java.util.List<T>
findMatching(OnmsCriteria criteria)
Deprecated.useOnmsDao.findMatching(Criteria)
instead.-
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
-
findMatching
java.util.List<T> findMatching(OnmsCriteria criteria)
Deprecated.useOnmsDao.findMatching(Criteria)
instead.
-
countMatching
int countMatching(OnmsCriteria onmsCrit)
Deprecated.useOnmsDao.countMatching(Criteria)
instead.
-
-