Interface IDtoInvalidTaskRequirementError
- All Superinterfaces:
IDtoAbstractError
- All Known Implementing Classes:
DtoInvalidTaskRequirementError
The taskRequirement at {path} does not fit the declared parameters of the task. It contains {duplicateKeys}, requires {unknownKeys} that are not declared in the task, does not define {missingKeys} that the task declares or has {wrongTypeKeys} that are declared to be float but cannot be parsed by Double.valueOf()
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionString[]The keys of the taskParameters that are required multiple times.String[]The keys of the taskParameters that are not required here but are declared in the task.getPath()The path to the invalid taskRequirement.getTask()The id of the task this taskRequirement needs to fit.getType()Type of this object.String[]The keys of the taskParameters that are required here but not declared in the task.String[]The keys of the taskParameters that are declared as float in task but aacnnot be parsed by Double.valueOf().voidsetDuplicateKeys(String[] duplicateKeys) The keys of the taskParameters that are required multiple times.voidsetMessage(String message) voidsetMissingKeys(String[] missingKeys) The keys of the taskParameters that are not required here but are declared in the task.voidThe path to the invalid taskRequirement.voidThe id of the task this taskRequirement needs to fit.voidsetUnknownKeys(String[] unknownKeys) The keys of the taskParameters that are required here but not declared in the task.voidsetWrongTypeKeys(String[] wrongTypeKeys) The keys of the taskParameters that are declared as float in task but aacnnot be parsed by Double.valueOf().
-
Field Details
-
_DISCRIMINATOR_TYPE_NAME
- See Also:
-
-
Method Details
-
getType
String getType()Type of this object.- Specified by:
getTypein interfaceIDtoAbstractError
-
getMessage
String getMessage()- Specified by:
getMessagein interfaceIDtoAbstractError
-
setMessage
- Specified by:
setMessagein interfaceIDtoAbstractError
-
getPath
String getPath()The path to the invalid taskRequirement. -
setPath
The path to the invalid taskRequirement. -
getTask
String getTask()The id of the task this taskRequirement needs to fit. -
setTask
The id of the task this taskRequirement needs to fit. -
getDuplicateKeys
String[] getDuplicateKeys()The keys of the taskParameters that are required multiple times. -
setDuplicateKeys
The keys of the taskParameters that are required multiple times. -
getUnknownKeys
String[] getUnknownKeys()The keys of the taskParameters that are required here but not declared in the task. -
setUnknownKeys
The keys of the taskParameters that are required here but not declared in the task. -
getMissingKeys
String[] getMissingKeys()The keys of the taskParameters that are not required here but are declared in the task. -
setMissingKeys
The keys of the taskParameters that are not required here but are declared in the task. -
getWrongTypeKeys
String[] getWrongTypeKeys()The keys of the taskParameters that are declared as float in task but aacnnot be parsed by Double.valueOf(). -
setWrongTypeKeys
The keys of the taskParameters that are declared as float in task but aacnnot be parsed by Double.valueOf().
-