Class ByteArrayToJsonNodeConverter

  • All Implemented Interfaces:
    ContentTypeConverter<byte[],​com.fasterxml.jackson.databind.JsonNode>

    public class ByteArrayToJsonNodeConverter
    extends Object
    implements ContentTypeConverter<byte[],​com.fasterxml.jackson.databind.JsonNode>
    ContentTypeConverter implementation that converts byte[] containing UTF8 encoded JSON string to a Jackson JsonNode.
    Since:
    2.2
    Author:
    Allard Buijze
    • Constructor Detail

      • ByteArrayToJsonNodeConverter

        public ByteArrayToJsonNodeConverter​(com.fasterxml.jackson.databind.ObjectMapper objectMapper)
        Initialize the Converter, using given objectMapper to parse the binary contents
        Parameters:
        objectMapper - the Jackson ObjectMapper to parse the byte array with
    • Method Detail

      • expectedSourceType

        public Class<byte[]> expectedSourceType()
        Description copied from interface: ContentTypeConverter
        The expected type of input data.
        Specified by:
        expectedSourceType in interface ContentTypeConverter<byte[],​com.fasterxml.jackson.databind.JsonNode>
        Returns:
        the expected data format in IntermediateRepresentation
      • targetType

        public Class<com.fasterxml.jackson.databind.JsonNode> targetType()
        Description copied from interface: ContentTypeConverter
        The returned type of IntermediateRepresentation
        Specified by:
        targetType in interface ContentTypeConverter<byte[],​com.fasterxml.jackson.databind.JsonNode>
        Returns:
        the output data format in IntermediateRepresentation
      • convert

        public com.fasterxml.jackson.databind.JsonNode convert​(byte[] original)
        Description copied from interface: ContentTypeConverter
        Converts the given object into another. Typically, these values are contained by a SerializedObject instance.
        Specified by:
        convert in interface ContentTypeConverter<byte[],​com.fasterxml.jackson.databind.JsonNode>
        Parameters:
        original - the value to convert
        Returns:
        the converted value