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

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

There is a newer version: 2.6.0
Show newest version
package com.tinkerpop.rexster.config;

import com.tinkerpop.blueprints.Graph;
import org.apache.commons.configuration.Configuration;

/**
 * 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(final Configuration properties) throws GraphConfigurationException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy