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

com.tinkerpop.rexster.protocol.serializer.json.templates.JsonTemplate Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
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