The persistence database schema as a configurable option
authorGeorgios Gousios <gousiosg@gmail.com>
Mon, 12 Dec 2011 14:50:56 +0000 (16:50 +0200)
committerGeorgios Gousios <gousiosg@gmail.com>
Mon, 12 Dec 2011 14:56:25 +0000 (16:56 +0200)
logic/src/main/resources/aquarium.properties
logic/src/main/scala/gr/grnet/aquarium/MasterConf.scala

index 9f9f2a4..b9e519f 100644 (file)
@@ -49,3 +49,6 @@ rest.service.class=gr.grnet.aquarium.rest.actor.RESTActorService
 
 # Comma separated list of exchanges known to aquarium
 amqp.exchanges=aquarium
+
+# The name of the DB schema to use
+persistence.db=aquarium
\ No newline at end of file
index f9d5a14..52b4b6e 100644 (file)
@@ -267,5 +267,10 @@ object MasterConf {
      *  Password for connecting to the persistence service
      */
     final val persistence_port = "persistence.port"
+
+    /**
+     *  The DB schema to use
+     */
+    final val persistence_db = "persistence.db"
   }
 }
\ No newline at end of file