mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Workflow group / pooled tasks support
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4892 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -221,7 +221,15 @@ public class ActionServiceImpl implements ActionService, RuntimeActionService, A
|
||||
*/
|
||||
public ActionDefinition getActionDefinition(String name)
|
||||
{
|
||||
return this.actionDefinitions.get(name);
|
||||
// get direct access to action definition (i.e. ignoring public flag of executer)
|
||||
ActionDefinition definition = null;
|
||||
Object bean = this.applicationContext.getBean(name);
|
||||
if (bean != null && bean instanceof ActionExecuter)
|
||||
{
|
||||
ActionExecuter executer = (ActionExecuter)bean;
|
||||
definition = executer.getActionDefinition();
|
||||
}
|
||||
return definition;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user