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

org.directwebremoting.json.serialize.JsonSerializer Maven / Gradle / Ivy

package org.directwebremoting.json.serialize;

import java.io.IOException;
import java.io.Writer;

/**
 * @author Joe Walker [joe at getahead dot ltd dot uk]
 */
public interface JsonSerializer
{
    /**
     * @param data ...
     * @param out ...
     * @throws IOException ...
     */
    void toJson(Object data, Writer out) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy