Package org.opennms.protocols.xml.dao
Interface XmlDataCollectionConfigDao
-
- All Known Implementing Classes:
XmlDataCollectionConfigDaoJaxb
public interface XmlDataCollectionConfigDao
The Interface XmlDataCollectionConfigDao.- Author:
- Alejandro Galue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XmlDataCollectionConfig
getConfig()
Gets the configuration.XmlDataCollection
getDataCollectionByIndex(int idx)
Gets the data collection by index.XmlDataCollection
getDataCollectionByName(java.lang.String name)
Gets the data collection by name.
-
-
-
Method Detail
-
getConfig
XmlDataCollectionConfig getConfig()
Gets the configuration.- Returns:
- the configuration
-
getDataCollectionByName
XmlDataCollection getDataCollectionByName(java.lang.String name)
Gets the data collection by name.- Parameters:
name
- the collection name- Returns:
- the data collection by name
-
getDataCollectionByIndex
XmlDataCollection getDataCollectionByIndex(int idx)
Gets the data collection by index.- Parameters:
idx
- the collection index- Returns:
- the data collection by index
-
-