
com.github.gkutiel.flip.res.Json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flip-apt Show documentation
Show all versions of flip-apt Show documentation
A new way to build web applications
The newest version!
package com.github.gkutiel.flip.res;
import com.github.gkutiel.flip.Response;
import com.google.gson.Gson;
public class Json implements Response {
private static final Gson GSON = new Gson();
@Override
public byte[] getBytes(final Object obj, final String... args) {
return GSON.toJson(obj).getBytes();
}
@Override
public String getMimeType(final String mime) {
return "application/json";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy