mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ACE-3121: Workflow Admin Console: Cannot change priority for activiti
- Handled priority property for Task - Determine if DelegateTask also needs similar handling git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@88373 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -41,8 +41,31 @@ public class ActivitiPriorityPropertyHandler extends ActivitiTaskPropertyHandler
|
|||||||
@Override
|
@Override
|
||||||
protected Object handleTaskProperty(Task task, TypeDefinition type, QName key, Serializable value)
|
protected Object handleTaskProperty(Task task, TypeDefinition type, QName key, Serializable value)
|
||||||
{
|
{
|
||||||
checkType(key, value, Integer.class);
|
int priority = -1;
|
||||||
task.setPriority((Integer) value);
|
// ACE-3121: According to bpmModel.xml, priority should be an int with allowed values {1,2,3}
|
||||||
|
// It could be a String that converts to an int, like when coming from WorkflowInterpreter.java
|
||||||
|
if (value instanceof String)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
priority = Integer.parseInt((String) value);
|
||||||
|
}
|
||||||
|
catch (NumberFormatException e)
|
||||||
|
{
|
||||||
|
return DO_NOT_ADD;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
checkType(key, value, Integer.class);
|
||||||
|
priority = (Integer) value;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (1 <= priority && priority <= 3)
|
||||||
|
{
|
||||||
|
task.setPriority(priority);
|
||||||
|
}
|
||||||
|
|
||||||
return DO_NOT_ADD;
|
return DO_NOT_ADD;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user