use of org.qi4j.valueserialization.orgjson.OrgJsonValueSerializer.OrgJsonOutput in project qi4j-sdk by Qi4j.
the class OrgJsonValueSerializer method adaptOutput.
//
// Serialization
//
@Override
protected OrgJsonOutput adaptOutput(OutputStream output) throws Exception {
Writer writer = new OutputStreamWriter(output, "UTF-8");
JSONWriter json = new JSONWriter(writer);
return new OrgJsonOutput(writer, json);
}
Aggregations