Package org.jbpm.kie.services.impl.bpmn2
Class UserTaskDefinitionImpl
- java.lang.Object
-
- org.jbpm.kie.services.impl.bpmn2.UserTaskDefinitionImpl
-
- All Implemented Interfaces:
Serializable
,UserTaskDefinition
public class UserTaskDefinitionImpl extends Object implements UserTaskDefinition, Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserTaskDefinitionImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<String>
getAssociatedEntities()
Returns the user task definition associated entities.String
getComment()
Returns the user task definition comment.String
getCreatedBy()
Returns the user task created by.String
getFormName()
Returns the user task definition form name.String
getId()
Returns the user task definition id.String
getName()
Returns the user task definition name.Integer
getPriority()
Returns the user task definition priority.Map<String,String>
getTaskInputMappings()
Returns the user task definition task input mappings.Map<String,String>
getTaskOutputMappings()
Returns the user task definition task output mappings.boolean
isSkippable()
Returns the user task skippable.void
setAssociatedEntities(Collection<String> associatedEntities)
void
setComment(String comment)
void
setCreatedBy(String createdBy)
void
setFormName(String formName)
void
setId(String id)
void
setName(String name)
void
setPriority(Integer priority)
void
setSkippable(boolean skippable)
void
setTaskInputMappings(Map<String,String> taskInputMappings)
void
setTaskOutputMappings(Map<String,String> taskOutputMappings)
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:UserTaskDefinition
Returns the user task definition name.- Specified by:
getName
in interfaceUserTaskDefinition
- Returns:
- name
-
getPriority
public Integer getPriority()
Description copied from interface:UserTaskDefinition
Returns the user task definition priority.- Specified by:
getPriority
in interfaceUserTaskDefinition
- Returns:
- priority
-
getComment
public String getComment()
Description copied from interface:UserTaskDefinition
Returns the user task definition comment.- Specified by:
getComment
in interfaceUserTaskDefinition
- Returns:
- comment
-
getCreatedBy
public String getCreatedBy()
Description copied from interface:UserTaskDefinition
Returns the user task created by.- Specified by:
getCreatedBy
in interfaceUserTaskDefinition
- Returns:
- created by
-
isSkippable
public boolean isSkippable()
Description copied from interface:UserTaskDefinition
Returns the user task skippable.- Specified by:
isSkippable
in interfaceUserTaskDefinition
- Returns:
- skippable
-
getAssociatedEntities
public Collection<String> getAssociatedEntities()
Description copied from interface:UserTaskDefinition
Returns the user task definition associated entities.- Specified by:
getAssociatedEntities
in interfaceUserTaskDefinition
- Returns:
- entities
-
getTaskInputMappings
public Map<String,String> getTaskInputMappings()
Description copied from interface:UserTaskDefinition
Returns the user task definition task input mappings.- Specified by:
getTaskInputMappings
in interfaceUserTaskDefinition
- Returns:
- task input mappings
-
getTaskOutputMappings
public Map<String,String> getTaskOutputMappings()
Description copied from interface:UserTaskDefinition
Returns the user task definition task output mappings.- Specified by:
getTaskOutputMappings
in interfaceUserTaskDefinition
- Returns:
- task output mappings
-
getId
public String getId()
Description copied from interface:UserTaskDefinition
Returns the user task definition id.- Specified by:
getId
in interfaceUserTaskDefinition
- Returns:
- id
-
getFormName
public String getFormName()
Description copied from interface:UserTaskDefinition
Returns the user task definition form name.- Specified by:
getFormName
in interfaceUserTaskDefinition
- Returns:
- form name
-
setName
public void setName(String name)
-
setPriority
public void setPriority(Integer priority)
-
setComment
public void setComment(String comment)
-
setCreatedBy
public void setCreatedBy(String createdBy)
-
setSkippable
public void setSkippable(boolean skippable)
-
setAssociatedEntities
public void setAssociatedEntities(Collection<String> associatedEntities)
-
setId
public void setId(String id)
-
setFormName
public void setFormName(String formName)
-
-