datastore
Datastore properties are all determined by the backend.
"datastore" : {
"backend" : "backendName"
}
backend
: The name of the controller for the datastore. Available controllers at this time aremongo
andldap
. [required]
backend = mongo
"datastore" : {
"backend" : "mongo",
"collection" : "collection name"
"datasource" : "logical name for the datasource",
}
backend
: The name for the mongo controller:mongo
[required]collection
: The name of the mongo collection in which the data is persisted. [required]datasource
: The name of the datastore as defined indatastore.json
config file. [required]