public static JSONAwareSerializer instance = new JSONAwareSerializer();
public void write(JSONSerializer serializer, Object object, Object fieldName, Type fieldType, int features) throws IOException {
SerializeWriter out = serializer.getWriter();
JSONAware aware = (JSONAware) object;
out.write(aware.toJSONString());
}