Uses of Class
net.ionite.docval.validation.ValidationResult
-
Packages that use ValidationResult Package Description net.ionite.docval.server Server (HTTP) and client for bulk- or continuous validationnet.ionite.docval.validation Validation implementation, manager, and result classesnet.ionite.docval.validation.validator Classes that perform the several kinds of validation -
-
Uses of ValidationResult in net.ionite.docval.server
Methods in net.ionite.docval.server that return ValidationResult Modifier and Type Method Description ValidationResultDocValHttpClient. validate(byte[] documentData)Send the given XML document to the server for validation, using a keyword derived from the document (seeKeywordDeriverfor more information on keyword derivation).ValidationResultDocValHttpClient. validate(byte[] documentData, String keyword)Send the given XML document to the server for validation, using the given keyword. -
Uses of ValidationResult in net.ionite.docval.validation
Methods in net.ionite.docval.validation that return ValidationResult Modifier and Type Method Description static ValidationResultValidationResult. fromJSON(org.json.simple.JSONObject jsonData)Deserialize the validation result object from the given JSON datastatic ValidationResultValidationResult. fromJSONString(String jsonString)Deserialize the validation result object from the given JSON stringValidationResultValidatorManager. validate(String keyword, byte[] source)Validate the given XML data for the given keyword. -
Uses of ValidationResult in net.ionite.docval.validation.validator
Methods in net.ionite.docval.validation.validator that return ValidationResult Modifier and Type Method Description ValidationResultDocumentValidator. validate(byte[] source)Validate the given XML source against the validation file and return a new ValidationResult instanceValidationResultDocumentValidator. validate(byte[] source, ValidationResult result)Validate the given XML source against the validation file, and add the errors and warnings to the given ValidationResult item.ValidationResultXSDValidator. validate(byte[] source)Validate the given XML document, and return a new ValidationResult structure containing the validation results.ValidationResultXSDValidator. validate(byte[] source, ValidationResult result)Validate the given XML document, and add the validation results to the given ValidationResult structureValidationResultXSLTValidator. validate(byte[] source)Validate the given XML document, and return a new ValidationResult structure containing the validation results.ValidationResultXSLTValidator. validate(byte[] source, ValidationResult result)Validate the given XML document, and add the validation results to the given ValidationResult structureMethods in net.ionite.docval.validation.validator with parameters of type ValidationResult Modifier and Type Method Description ValidationResultDocumentValidator. validate(byte[] source, ValidationResult result)Validate the given XML source against the validation file, and add the errors and warnings to the given ValidationResult item.ValidationResultXSDValidator. validate(byte[] source, ValidationResult result)Validate the given XML document, and add the validation results to the given ValidationResult structureValidationResultXSLTValidator. validate(byte[] source, ValidationResult result)Validate the given XML document, and add the validation results to the given ValidationResult structure
-