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

com.flipboard.goldengate.GsonJsonSerializer Maven / Gradle / Ivy

package com.flipboard.goldengate;

import com.google.gson.Gson;

public class GsonJsonSerializer implements JsonSerializer {
    
    private Gson gson = new Gson();

    public  String toJson(T stuff) {
        return gson.toJson(stuff);
    }

    public  T fromJson(String json, Class type) {
        return gson.fromJson(json, type);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy