Interface IDtoOperatorAvailability
- All Known Implementing Classes:
DtoOperatorAvailability
public interface IDtoOperatorAvailability
A stretch of time when attention and or skills are made available to an operator.
-
Method Summary
Modifier and TypeMethodDescriptionTotal attention that the operator gains for this stretch of time.getEnd()...until this time (end greater than start).String[]List of skills that the operator gains for this stretch of time.getStart()From this time...voidsetAttention(Integer attention) Total attention that the operator gains for this stretch of time.void...until this time (end greater than start).voidList of skills that the operator gains for this stretch of time.voidFrom this time...
-
Method Details
-
getStart
Long getStart()From this time... (end greater than start). Default is Timestamp::MIN -
setStart
From this time... (end greater than start). Default is Timestamp::MIN -
getEnd
Long getEnd()...until this time (end greater than start). Default is Timestamp::MAX -
setEnd
...until this time (end greater than start). Default is Timestamp::MAX -
getSkills
String[] getSkills()List of skills that the operator gains for this stretch of time. -
setSkills
List of skills that the operator gains for this stretch of time. -
getAttention
Integer getAttention()Total attention that the operator gains for this stretch of time. (e.g. 200 if you want to group two identical operators with attention 100 into one). -
setAttention
Total attention that the operator gains for this stretch of time. (e.g. 200 if you want to group two identical operators with attention 100 into one).
-