Package org.camunda.bpm.webapp
Interface AppRuntimeDelegate<T extends AppPlugin>
- 
- All Known Subinterfaces:
- AdminRuntimeDelegate,- CockpitRuntimeDelegate,- TasklistRuntimeDelegate,- WelcomeRuntimeDelegate
 - All Known Implementing Classes:
- AbstractAppRuntimeDelegate,- DefaultAdminRuntimeDelegate,- DefaultCockpitRuntimeDelegate,- DefaultTasklistRuntimeDelegate,- DefaultWelcomeRuntimeDelegate
 
 public interface AppRuntimeDelegate<T extends AppPlugin>The list of services provided by a camunda webapplication, providing a plugin registry and access to the process engine.- Author:
- Daniel Meyer
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description AppPluginRegistry<T>getAppPluginRegistry()A registry that provides access to the plugins registered in the application.ProcessEnginegetDefaultProcessEngine()Returns the defaultProcessEngineprovided by theProcessEnginegetProcessEngine(String processEngineName)Returns aProcessEngineto the assignedprocessEngineNameSet<String>getProcessEngineNames()Returns the list ofProcessEnginenames available to the runtimeList<PluginResourceOverride>getResourceOverrides()A list of resource overrides.
 
- 
- 
- 
Method Detail- 
getProcessEngineProcessEngine getProcessEngine(String processEngineName) Returns aProcessEngineto the assignedprocessEngineName- Parameters:
- processEngineName-
- Returns:
- a ProcessEngine
 
 - 
getProcessEngineNamesSet<String> getProcessEngineNames() Returns the list ofProcessEnginenames available to the runtime- Returns:
 
 - 
getDefaultProcessEngineProcessEngine getDefaultProcessEngine() Returns the defaultProcessEngineprovided by the- Returns:
 
 - 
getAppPluginRegistryAppPluginRegistry<T> getAppPluginRegistry() A registry that provides access to the plugins registered in the application.- Returns:
 
 - 
getResourceOverridesList<PluginResourceOverride> getResourceOverrides() A list of resource overrides.- Returns:
- the list of registered resource overrides
 
 
- 
 
-