com.tinkerpop.rexster.protocol.serializer.json.templates.JsonTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rexster-protocol Show documentation
Show all versions of rexster-protocol Show documentation
RexPro is a binary protocol for Rexster graph server.
package com.tinkerpop.rexster.protocol.serializer.json.templates;
import org.codehaus.jackson.JsonNode;
/**
* @author Blake Eggleston (bdeggleston.github.com)
*/
public interface JsonTemplate {
public T deserialize(JsonNode json);
public JsonNode serialize(T src);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy