Package org.apache.bookkeeper.conf
Interface Configurable
-
- All Known Implementing Classes:
AbstractDNSToSwitchMapping
,CachedDNSToSwitchMapping
,ScriptBasedMapping
@Public @Stable public interface Configurable
Class that may be configured with aConfiguration
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.commons.configuration.Configuration
getConf()
Return the configuration used by this object.void
setConf(org.apache.commons.configuration.Configuration conf)
Set the configuration to be used by this object.
-
-
-
Method Detail
-
setConf
void setConf(org.apache.commons.configuration.Configuration conf)
Set the configuration to be used by this object.- Parameters:
conf
- Configuration object to use
-
getConf
org.apache.commons.configuration.Configuration getConf()
Return the configuration used by this object.- Returns:
- configuration used by this object.
-
-