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

com.kfuntak.gwt.json.serialization.client.ObjectSerializer Maven / Gradle / Ivy

Go to download

GWT Professional JSON Serializer allows you to serialize any JSON text into a java object (and reverse). It is crucial functionality when there is no GWT-RPC on server side. This JSON serializer allows easy connecting GWT client side to any standard server side technology.

The newest version!
package com.kfuntak.gwt.json.serialization.client;

import com.google.gwt.json.client.JSONException;
import com.google.gwt.json.client.JSONValue;

public interface ObjectSerializer {

    String serialize(Object pojo);

    JSONValue serializeToJson(Object pojo);

    Object deSerialize(JSONValue jsonValue, String className) throws JSONException;

    Object deSerialize(String jsonString, String className) throws JSONException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy