| com.opensymphony.workflow.config.Configuration
All known Subclasses: com.opensymphony.workflow.config.SpringConfiguration, com.opensymphony.workflow.config.DefaultConfiguration,
Configuration | public interface Configuration (Code) | | Configuration object that is responsible for all 'static' workflow information.
This includes loading of workflow configurations, setting up the workflow
descriptor factory, as well as proxying calls to the underlying descriptor
factory.
Date: Mar 22, 2004
Time: 3:42:19 PM
author: hani |
getPersistence | String getPersistence()(Code) | | Get the fully qualified class name of the persistence store.
|
getPersistenceArgs | Map getPersistenceArgs()(Code) | | Get the persistence args for the persistence store.
Note that this returns the actual args and not a copy,
so modifications to the returned Map could potentially
affect store behaviour.
|
getVariableResolver | VariableResolver getVariableResolver()(Code) | | Return the resolver to use for all variables specified in scripts
|
getWorkflowNames | String[] getWorkflowNames() throws FactoryException(Code) | | Get a list of all available workflow descriptor names.
throws: FactoryException - if the underlying factory does not support this methodor if there was an error looking up workflow names. |
isModifiable | boolean isModifiable(String name)(Code) | | Check if a particular workflow can be modified or not.
Parameters: name - The workflow name. true if the workflow can be modified, false otherwise. |
load | void load(URL url) throws FactoryException(Code) | | Load the specified configuration file.
Parameters: url - url to the configuration file. |
removeWorkflow | boolean removeWorkflow(String workflow) throws FactoryException(Code) | | Remove the specified workflow.
Parameters: workflow - The workflow name of the workflow to remove. true if the workflow was removed, false otherwise. throws: FactoryException - If the underlying workflow factory has an error removing the workflow,or if it does not support the removal of workflows. |
|
|