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

com.tinkerpop.rexster.config.GraphConfiguration Maven / Gradle / Ivy

The newest version!
package com.tinkerpop.rexster.config;

import com.tinkerpop.blueprints.Graph;

/**
 * The GraphConfiguration interface is used to take a Configuration object from rexster.xml and from that
 * generate a new Graph instance.
 * 

* This interface can be used to construct new Graph configuration types for Rexster for other Blueprints * implementations not yet supported by Rexster (i.e. Infinite Graph). * * @author Stephen Mallette (http://stephen.genoprime.com) */ public interface GraphConfiguration { Graph configureGraphInstance(GraphConfigurationContext context) throws GraphConfigurationException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy