RandomSec/src/main/java/com/metaweb/gridworks/Jsonizable.java
2010-05-04 23:24:48 +00:00

17 lines
360 B
Java

package com.metaweb.gridworks;
import java.util.Properties;
import org.json.JSONException;
import org.json.JSONWriter;
/**
* Interface for streaming out JSON, either into HTTP responses or
* serialization files.
*
* @author dfhuynh
*/
public interface Jsonizable {
public void write(JSONWriter writer, Properties options) throws JSONException;
}