14 public void serialize(Collection<
byte[]> value, JsonGenerator jsonGenerator, SerializerProvider serializers)
throws IOException {
15 jsonGenerator.writeStartArray();
16 for (
byte[] file : value) {
17 jsonGenerator.writeString(Base64.getEncoder().encodeToString(file));
19 jsonGenerator.writeEndArray();