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

com.buschmais.jqassistant.neo4jserver.neo4jv2.Neo4jV2ServerFactory Maven / Gradle / Ivy

The newest version!
package com.buschmais.jqassistant.neo4jserver.neo4jv2;

import com.buschmais.jqassistant.core.store.impl.EmbeddedGraphStore;
import com.buschmais.jqassistant.neo4jserver.bootstrap.api.Server;
import com.buschmais.jqassistant.neo4jserver.bootstrap.spi.ServerFactory;

public class Neo4jV2ServerFactory implements ServerFactory {
    @Override
    public Server getServer(EmbeddedGraphStore store, String address, int port) {
        return new Neo4jV2CommunityNeoServer(store, address, port);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy