* Render a 200 OK application/json response.
* @param o The Java object to serialize
* @param adapters A set of GSON serializers/deserializers/instance creator to use
*/
protected static void renderJSON(Object o, JsonSerializer<?>... adapters) {
throw new RenderJson(o, adapters);
}