Package org.opennms.netmgt.dao
Interface VmwareDatacollectionConfigDao
-
- All Known Implementing Classes:
VmwareDatacollectionConfigDaoJaxb
public interface VmwareDatacollectionConfigDao
The Interface VmwareDatacollectionConfigDao This class is used for defining the methods for accessing the configuration data for the Vmware Data Collection- Author:
- Christian Pape
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VmwareDatacollectionConfig
getConfig()
Returns the loaded config object.String
getRrdPath()
Returns the base Rrd's path.RrdRepository
getRrdRepository(String collectionName)
Returns the Rrd repository for a given collection name.VmwareCollection
getVmwareCollection(String collectionName)
This method returns a subset of the configuration data for a given collection name.
-
-
-
Method Detail
-
getConfig
VmwareDatacollectionConfig getConfig()
Returns the loaded config object.- Returns:
- the current config object
-
getVmwareCollection
VmwareCollection getVmwareCollection(String collectionName)
This method returns a subset of the configuration data for a given collection name.- Parameters:
collectionName
- the collection's name- Returns:
- the collection object
-
getRrdRepository
RrdRepository getRrdRepository(String collectionName)
Returns the Rrd repository for a given collection name.- Parameters:
collectionName
- the collection's name- Returns:
- the repository
-
getRrdPath
String getRrdPath()
Returns the base Rrd's path.- Returns:
- the Rrd's path
-
-