Launcher/LauncherAPI/src/main/java/pro/gravit/launcher/request/JsonResultSerializeAdapter.java

25 lines
771 B
Java
Raw Normal View History

package pro.gravit.launcher.request;
import java.lang.reflect.Type;
2019-06-03 10:58:10 +03:00
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
public class JsonResultSerializeAdapter implements JsonSerializer<WebSocketEvent> {
private static final String PROP_NAME = "type";
@Override
public JsonElement serialize(WebSocketEvent src, Type typeOfSrc, JsonSerializationContext context) {
// note : won't work, you must delegate this
JsonObject jo = context.serialize(src).getAsJsonObject();
String classPath = src.getType();
jo.add(PROP_NAME, new JsonPrimitive(classPath));
return jo;
}
}