Class AbstractCollectionAdapterFactory
- java.lang.Object
-
- org.opennms.netmgt.telemetry.protocols.collection.AbstractAdapterFactory
-
- org.opennms.netmgt.telemetry.protocols.collection.AbstractCollectionAdapterFactory
-
- All Implemented Interfaces:
AdapterFactory
,TelemetryBeanFactory<Adapter,AdapterDefinition>
- Direct Known Subclasses:
BmpTelemetryAdapterFactory
,GraphiteAdapterFactory
,JtiAdapterFactory
,NxosAdapterFactory
,OpenConfigAdapterFactory
,SFlowTelemetryAdapterFactory
public abstract class AbstractCollectionAdapterFactory extends AbstractAdapterFactory
-
-
Field Summary
-
Fields inherited from class org.opennms.netmgt.telemetry.protocols.collection.AbstractAdapterFactory
bundleContext
-
-
Constructor Summary
Constructors Constructor Description AbstractCollectionAdapterFactory(org.osgi.framework.BundleContext bundleContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CollectionAgentFactory
getCollectionAgentFactory()
FilterDao
getFilterDao()
NodeDao
getNodeDao()
PersisterFactory
getPersisterFactory()
ThresholdingService
getThresholdingService()
org.springframework.transaction.support.TransactionOperations
getTransactionTemplate()
void
setCollectionAgentFactory(CollectionAgentFactory collectionAgentFactory)
void
setFilterDao(FilterDao filterDao)
void
setNodeDao(NodeDao nodeDao)
void
setPersisterFactory(PersisterFactory persisterFactory)
void
setThresholdingService(ThresholdingService thresholdingService)
void
setTransactionTemplate(org.springframework.transaction.support.TransactionOperations transactionTemplate)
-
Methods inherited from class org.opennms.netmgt.telemetry.protocols.collection.AbstractAdapterFactory
getBundleContext, getInterfaceToNodeCache, getTelemetryRegistry, setInterfaceToNodeCache, setTelemetryRegistry
-
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.telemetry.api.TelemetryBeanFactory
createBean, getBeanClass
-
-
-
-
Method Detail
-
getCollectionAgentFactory
public CollectionAgentFactory getCollectionAgentFactory()
-
setCollectionAgentFactory
public void setCollectionAgentFactory(CollectionAgentFactory collectionAgentFactory)
-
getNodeDao
public NodeDao getNodeDao()
-
setNodeDao
public void setNodeDao(NodeDao nodeDao)
-
getTransactionTemplate
public org.springframework.transaction.support.TransactionOperations getTransactionTemplate()
-
setTransactionTemplate
public void setTransactionTemplate(org.springframework.transaction.support.TransactionOperations transactionTemplate)
-
getFilterDao
public FilterDao getFilterDao()
-
setFilterDao
public void setFilterDao(FilterDao filterDao)
-
getPersisterFactory
public PersisterFactory getPersisterFactory()
-
setPersisterFactory
public void setPersisterFactory(PersisterFactory persisterFactory)
-
getThresholdingService
public ThresholdingService getThresholdingService()
-
setThresholdingService
public void setThresholdingService(ThresholdingService thresholdingService)
-
-