10 Key Things to note for Taxonomy Validation
- Taxonomy validation is applied to all non-static private fields. . Exceptions: Fields of types extending DataTransferObject, ENUM fields.
- The fields should have appropriate getter method.
- For Boolean – the getter method should be ‘is<Fieldname>’ (e.g. isShared)
- For other types – the getter should be ‘get<Fieldname>’ (e.g. getPartyId)
- If any field in the DTO is of type of an object which extends Validatable Class, the corresponding validator class will be responsible for its field validation.
- For fields that do not require any specific data type validation, data type
‘FREETEXT’
an be mapped. - For list type of fields the validation will be done in loop, validating each field as per taxonomy definition.
- In validationError, the structure of the error object is as follows-
{ "objectName": <fully qualified name of the DTO on which validate method is called>, "attributeName": < the field in which the validation has failed>, "errorCode": <error code>, "errorMessage": <locale specific message for the errorCode> }
For list of objects or fields the attribute name will have an index concatenated by ‘#’ in attributeName.