| com.opensymphony.xwork.config.RuntimeConfiguration
RuntimeConfiguration | public interface RuntimeConfiguration (Code) | | RuntimeConfiguration
author: Jason Carreira author: Created Feb 25, 2003 10:56:02 PM |
getActionConfig | ActionConfig getActionConfig(String namespace, String name)(Code) | | get the fully expanded ActionConfig for a specified namespace and (action) name
Parameters: namespace - the namespace of the Action. if this is null, then the empty namespace, "", will be used Parameters: name - the name of the Action. may not be null. the requested ActionConfig or null if there was no ActionConfig associated with the specified namespaceand name |
getActionConfigs | Map getActionConfigs()(Code) | | returns a Map of all the registered ActionConfigs. Again, these ActionConfigs are fully expanded so that any
inherited interceptors, results, etc. will be included
a Map of Map keyed by namespace and name respectively such thatActionConfig config = (ActionConfig)((Map)getActionConfigs.get(namespace)).get(name); should return a valid config for valid namespace/name pairs |
|
|