public Object deserializeWithType(
     JsonParser jp, DeserializationContext ctxt, TypeDeserializer typeDeserializer)
     throws IOException, JsonProcessingException {
   /* Should there be separate handling for base64 stuff?
    * for now this should be enough:
    */
   return typeDeserializer.deserializeTypedFromArray(jp, ctxt);
 }