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.StringgetComment()Returns the user task definition comment.StringgetCreatedBy()Returns the user task created by.StringgetFormName()Returns the user task definition form name.StringgetId()Returns the user task definition id.StringgetName()Returns the user task definition name.IntegergetPriority()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.booleanisSkippable()Returns the user task skippable.voidsetAssociatedEntities(Collection<String> associatedEntities)voidsetComment(String comment)voidsetCreatedBy(String createdBy)voidsetFormName(String formName)voidsetId(String id)voidsetName(String name)voidsetPriority(Integer priority)voidsetSkippable(boolean skippable)voidsetTaskInputMappings(Map<String,String> taskInputMappings)voidsetTaskOutputMappings(Map<String,String> taskOutputMappings)
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:UserTaskDefinitionReturns the user task definition name.- Specified by:
getNamein interfaceUserTaskDefinition- Returns:
- name
-
getPriority
public Integer getPriority()
Description copied from interface:UserTaskDefinitionReturns the user task definition priority.- Specified by:
getPriorityin interfaceUserTaskDefinition- Returns:
- priority
-
getComment
public String getComment()
Description copied from interface:UserTaskDefinitionReturns the user task definition comment.- Specified by:
getCommentin interfaceUserTaskDefinition- Returns:
- comment
-
getCreatedBy
public String getCreatedBy()
Description copied from interface:UserTaskDefinitionReturns the user task created by.- Specified by:
getCreatedByin interfaceUserTaskDefinition- Returns:
- created by
-
isSkippable
public boolean isSkippable()
Description copied from interface:UserTaskDefinitionReturns the user task skippable.- Specified by:
isSkippablein interfaceUserTaskDefinition- Returns:
- skippable
-
getAssociatedEntities
public Collection<String> getAssociatedEntities()
Description copied from interface:UserTaskDefinitionReturns the user task definition associated entities.- Specified by:
getAssociatedEntitiesin interfaceUserTaskDefinition- Returns:
- entities
-
getTaskInputMappings
public Map<String,String> getTaskInputMappings()
Description copied from interface:UserTaskDefinitionReturns the user task definition task input mappings.- Specified by:
getTaskInputMappingsin interfaceUserTaskDefinition- Returns:
- task input mappings
-
getTaskOutputMappings
public Map<String,String> getTaskOutputMappings()
Description copied from interface:UserTaskDefinitionReturns the user task definition task output mappings.- Specified by:
getTaskOutputMappingsin interfaceUserTaskDefinition- Returns:
- task output mappings
-
getId
public String getId()
Description copied from interface:UserTaskDefinitionReturns the user task definition id.- Specified by:
getIdin interfaceUserTaskDefinition- Returns:
- id
-
getFormName
public String getFormName()
Description copied from interface:UserTaskDefinitionReturns the user task definition form name.- Specified by:
getFormNamein 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)
-
-