Package com.tinkerpop.rexster.config

Source Code of com.tinkerpop.rexster.config.MockIndexableGraphConfiguration

package com.tinkerpop.rexster.config;

import com.tinkerpop.blueprints.Graph;
import com.tinkerpop.blueprints.impls.tg.TinkerGraph;

public class MockIndexableGraphConfiguration implements GraphConfiguration {

    public Graph configureGraphInstance(final GraphConfigurationContext context) throws GraphConfigurationException {
        return new TinkerGraph();
    }

}
TOP

Related Classes of com.tinkerpop.rexster.config.MockIndexableGraphConfiguration

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.