All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.structr.rest.serialization.StreamingJsonWriter Maven / Gradle / Ivy

Go to download

Structr is an open source framework based on the popular Neo4j graph database.

There is a newer version: 2.0.1
Show newest version
package org.structr.rest.serialization;

import java.io.Writer;
import org.structr.core.Value;

/**
 *
 * @author Christian Morgner
 */
public class StreamingJsonWriter extends StreamingWriter {

	public StreamingJsonWriter(final Value propertyView, final boolean indent) {
		super(propertyView, indent);
	}
	
	@Override
	public RestWriter getRestWriter(Writer writer) {
		return new StructrJsonWriter(writer);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy