![JAR search and dependency download from the Maven repository](/logo.png)
org.bitbucket.gkutiel.in.my.mind.handler.Json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of in-my-mind Show documentation
Show all versions of in-my-mind Show documentation
An opinionated web framework on top of in-core
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