RandomSec/src/main/java/com/metaweb/gridworks/Jsonizable.java

17 lines
376 B
Java
Raw Normal View History

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;
}