protected Neo4jV3ProcessBasedInstanceProvider(string neo4jHomeFolder, IFileCopy fileCopy, Neo4jVersion neo4jVersion, Neo4jEndpoints endpoints) { this.neo4jHomeFolder = neo4jHomeFolder; this.fileCopy = fileCopy; neo4jConfigFolder = Path.Combine(neo4jHomeFolder, "conf"); Version = neo4jVersion; Endpoints = endpoints; configEditors = new Dictionary <string, ConfigEditor> { { Neo4jConfigFile, new ConfigEditor(Path.Combine(neo4jConfigFolder, Neo4jConfigFile)) } }; }
public Neo4jV3JavaInstanceProvider(string javaPath, string neo4jHomeFolder, IFileCopy fileCopy, Neo4jVersion neo4jVersion, Neo4jEndpoints endpoints) :base(neo4jHomeFolder, fileCopy, neo4jVersion, endpoints) { this.javaPath = javaPath; }
public Neo4jV3PowerShellInstanceProvider(string neo4jHomeFolder, IFileCopy fileCopy, Neo4jVersion neo4jVersion, Neo4jEndpoints endpoints) : base(neo4jHomeFolder, fileCopy, neo4jVersion, endpoints) { }