Interface IDtoOperatorRequirement
- All Known Implementing Classes:
DtoOperatorRequirement
public interface IDtoOperatorRequirement
Details about the expertise required during execution of a process.
-
Method Summary
Modifier and TypeMethodDescriptionAttention required on this skill (in sum by some operators) to run the process.getEnd()Skill is required until this time.getSkill()ID of the required skill.getStart()Skill is required from this time onwards.voidsetAttention(Integer attention) Attention required on this skill (in sum by some operators) to run the process.voidSkill is required until this time.voidID of the required skill.voidSkill is required from this time onwards.
-
Method Details
-
getSkill
String getSkill()ID of the required skill. -
setSkill
ID of the required skill. -
getAttention
Integer getAttention()Attention required on this skill (in sum by some operators) to run the process. The higher the number, the higher will be the attention. -
setAttention
Attention required on this skill (in sum by some operators) to run the process. The higher the number, the higher will be the attention. -
getStart
IDtoAbstractAllocationAnchor getStart()Skill is required from this time onwards. Start may not reference a Time after end. -
setStart
Skill is required from this time onwards. Start may not reference a Time after end. -
getEnd
IDtoAbstractAllocationAnchor getEnd()Skill is required until this time. Start may not reference a Time after end. -
setEnd
Skill is required until this time. Start may not reference a Time after end.
-