All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.facebook.presto.jdbc.internal.jackson.databind.ext.NioPathSerializer Maven / Gradle / Ivy

There is a newer version: 0.289
Show newest version

package com.facebook.presto.jdbc.internal.jackson.databind.ext;

import java.io.IOException;
import java.nio.file.Path;

import com.facebook.presto.jdbc.internal.jackson.core.JsonGenerator;
import com.facebook.presto.jdbc.internal.jackson.databind.SerializerProvider;
import com.facebook.presto.jdbc.internal.jackson.databind.ser.std.StdScalarSerializer;

/**
 * @since 2.8
 */
public class NioPathSerializer extends StdScalarSerializer
{
    private static final long serialVersionUID = 1;

    public NioPathSerializer() { super(Path.class); }

    @Override
    public void serialize(Path value, JsonGenerator gen, SerializerProvider serializers) throws IOException {
        // write the Path as a URI, always.
        gen.writeString(value.toUri().toString());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy