org.chwf.config
Interface RawConfig

All Known Implementing Classes:
org.chwf.config.ConfigImpl

public interface RawConfig

An interface exposing raw configuration data. Config objects can be cast to this interface if you need access to the data in a specific config object without searching the parent config path.

Author:
Paul Strack

Method Summary
 java.util.Map getRawData()
          Get the raw configuration data.
 java.lang.String getRawValue(java.lang.String key)
          Get raw data value.
 

Method Detail

getRawData

public java.util.Map getRawData()
Get the raw configuration data. Parent configuration data is not included.
Returns:
The list of keys for the current Config object.

getRawValue

public java.lang.String getRawValue(java.lang.String key)
Get raw data value.
Parameters:
key - The search key.
Returns:
The value or null if it does not exist.


Copyright © 2002-2004, Paul Strack. All Rights Reserved.