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

org.bitbucket.gkutiel.in.my.mind.handler.Json Maven / Gradle / Ivy

The newest version!
package org.bitbucket.gkutiel.in.my.mind.handler;

import com.google.gson.Gson;

public abstract class Json extends Textual {

	private static Gson gson = new Gson();

	protected abstract T get();

	@Override protected final String getContentType() {
		return "application/json";
	}

	@Override protected final String getText() {
		return gson.toJson(get());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy