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

org.atmosphere.gwt.client.impl.JSONObjectSerializerStub Maven / Gradle / Ivy

There is a newer version: 1.0.18.vaadin3
Show newest version
package org.atmosphere.gwt.client.impl;

import com.google.gwt.user.client.rpc.SerializationException;
import org.atmosphere.gwt.client.JSONObjectSerializer;

/**
 * Please replace this stub with the an appropriate implementation
 * see atmosphere-gwt-extra
 * 
 * @author p.havelaar
 */
public class JSONObjectSerializerStub implements JSONObjectSerializer {

    @Override
    public Object deserialize(String message) throws SerializationException {
        return message;
    }

    @Override
    public String serialize(Object message) throws SerializationException {
        return message.toString();
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy