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

net.caladesiframework.neo4j.db.Neo4jDatabaseService.scala Maven / Gradle / Ivy

/*
* Copyright (c) 2012 Sheeprice Ltd.
* All rights reserved.
*
* http://license.sheeprice.com/LICENSE-1.0
*
* COPYING, REDISTRIBUTION AND USE IN ANY FORM ARE PROHIBITED WITHOUT AN
* EXPLICIT WRITTEN PERMISSION.
*/

package net.caladesiframework.neo4j.db

import org.neo4j.graphdb.GraphDatabaseService

/**
 * Interface for GraphDatabaseService
 *
 */
trait Neo4jDatabaseService {
  def graphDatabase: GraphDatabaseService
}

/**
 * standard DatabaseService implementation
 * for GraphDatabaseService
 */
case class DatabaseServiceImpl(graphDatabase: GraphDatabaseService) extends Neo4jDatabaseService




© 2015 - 2025 Weber Informatics LLC | Privacy Policy