Package org.nuxeo.ecm.core.bulk.io
Class BulkCommandJsonReader
- java.lang.Object
-
- org.nuxeo.ecm.core.io.marshallers.json.AbstractJsonReader<EntityType>
-
- org.nuxeo.ecm.core.io.marshallers.json.EntityJsonReader<BulkCommand>
-
- org.nuxeo.ecm.core.bulk.io.BulkCommandJsonReader
-
- All Implemented Interfaces:
Marshaller<BulkCommand>
,Reader<BulkCommand>
@Setup(mode=SINGLETON, priority=2000) public class BulkCommandJsonReader extends EntityJsonReader<BulkCommand>
- Since:
- 10.2
-
-
Field Summary
-
Fields inherited from class org.nuxeo.ecm.core.io.marshallers.json.AbstractJsonReader
ctx, registry
-
-
Constructor Summary
Constructors Constructor Description BulkCommandJsonReader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected BulkCommand
readEntity(com.fasterxml.jackson.databind.JsonNode jn)
Implement this method to read the entity.-
Methods inherited from class org.nuxeo.ecm.core.io.marshallers.json.EntityJsonReader
read
-
Methods inherited from class org.nuxeo.ecm.core.io.marshallers.json.AbstractJsonReader
accept, getBooleanField, getLongField, getNode, getStringField, getStringListField, read, readEntity
-
-
-
-
Method Detail
-
readEntity
protected BulkCommand readEntity(com.fasterxml.jackson.databind.JsonNode jn)
Description copied from class:EntityJsonReader
Implement this method to read the entity.- Specified by:
readEntity
in classEntityJsonReader<BulkCommand>
- Parameters:
jn
- AJsonNode
pointing at the root of the json input.- Returns:
- The parsed entity.
-
-