@Setup(mode=SINGLETON, priority=2000) public class DocumentValidationReportJsonWriter extends ExtensibleEntityJsonWriter<DocumentValidationReport>
DocumentValidationReport
to Json.
This marshaller is enrichable: register class implementing AbstractJsonEnricher
and managing
DocumentValidationReport
.
This marshaller is also extensible: extend it and simply override
ExtensibleEntityJsonWriter#extend(DocumentValidationReport, JsonWriter)
.
Format is:
{ "entity-type":"validation_report", "has_error": true|false, "number": 123, <- number of errors present in this report "violations": [ { "message": "TheErrorMessage", "invalid_value": null|"THE_INVALID_VALUE_AS_STRING", "constraint": { see {@link ConstraintJsonWriter} format } }, ... ] <-- contextParameters if there are enrichers activated <-- additional property provided by extend() method }
Modifier and Type | Field and Description |
---|---|
static String |
ENTITY_TYPE |
ctx, registry
Constructor and Description |
---|
DocumentValidationReportJsonWriter() |
Modifier and Type | Method and Description |
---|---|
protected void |
writeEntityBody(DocumentValidationReport report,
org.codehaus.jackson.JsonGenerator jg)
Implement this method to write the entity body.
|
extend, write
accept, getGenerator, write, writeEntity, writeEntity, writeEntityField
public static final String ENTITY_TYPE
public DocumentValidationReportJsonWriter()
protected void writeEntityBody(DocumentValidationReport report, org.codehaus.jackson.JsonGenerator jg) throws IOException
ExtensibleEntityJsonWriter
writeEntityBody
in class ExtensibleEntityJsonWriter<DocumentValidationReport>
report
- The Java entity.jg
- A JsonGenerator
ready to write your entity as Json.IOException
Copyright © 2016 Nuxeo SA. All rights reserved.