| com.metaboss.enterprise.foundationservices.FSAccessToSettings
FSAccessToSettings | public interface FSAccessToSettings (Code) | | This service provides basic access to settings. When implemented for a particular
enterprise this service will implement some settings hierarch policies. For example
it may have a separate user settings storage, branch settings storage and global settings storage.
The various branches of settings hierarchy may even be implemented using different storage technologies.
This interface provides access to the settings storage from the aplication level
|
COMPONENT_URL | final public static String COMPONENT_URL(Code) | | Naming URL of the component
|
getSetting | public String getSetting(String pPath, String pKey)(Code) | | Retrieves the value of the setting for the specified key at the specified path
Parameters: pPath - the path experession with java package like syntax Parameters: pKey - the key uniquely identifying the value the retrieved setting or null if no key has been found |
storeSetting | public void storeSetting(String pPath, String pKey, String pValue)(Code) | | Stores the value of the setting for the specified key at the specified path
Parameters: pPath - the path experession with java package like syntax Parameters: pKey - the key uniquely identifying the value Parameters: pValue - the serializable value to store |
|
|