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

it.espr.mvc.json.GsonImpl Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package it.espr.mvc.json;

import com.google.gson.Gson;

public class GsonImpl implements Json {

	private Gson gson;

	public GsonImpl(Gson gson) {
		super();
		this.gson = gson;
	}

	@Override
	public  Type deserialise(Class type, String string) {
		return gson.fromJson(string, type);
	}

	@Override
	public String serialise(Object object) {
		return gson.toJson(object);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy