aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/data/nosqlaccess/nosqlstore.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-06-17 22:31:44 -0700
committerValerio Virgillito2012-06-17 22:31:44 -0700
commit8fe92b94ce5e1e2857d088752d94e19db7e3d8a8 (patch)
treed84807aae0b974b5200050972dd94da6066e363b /node_modules/montage/data/nosqlaccess/nosqlstore.js
parente570fc8518cf03dd03c15982edcf17c5ba0a293d (diff)
downloadninja-8fe92b94ce5e1e2857d088752d94e19db7e3d8a8.tar.gz
montage v11 merge into ninja
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'node_modules/montage/data/nosqlaccess/nosqlstore.js')
-rwxr-xr-xnode_modules/montage/data/nosqlaccess/nosqlstore.js68
1 files changed, 0 insertions, 68 deletions
diff --git a/node_modules/montage/data/nosqlaccess/nosqlstore.js b/node_modules/montage/data/nosqlaccess/nosqlstore.js
deleted file mode 100755
index 8fb11d7d..00000000
--- a/node_modules/montage/data/nosqlaccess/nosqlstore.js
+++ /dev/null
@@ -1,68 +0,0 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6/**
7 @module montage/data/nosqlaccess/nosqlstore
8 @requires montage/core/core
9 @requires montage/data/store
10 @requires montage/core/logger
11*/
12var Montage = require("montage").Montage;
13var Store = require("data/store").Store;
14var logger = require("core/logger").logger("nosqlstore");
15/**
16 @class module:montage/data/nosqlaccess/nosqlstore.NoSqlStore
17 @extends module:montage/data/store.Store
18*/
19var NoSqlStore = exports.NoSqlStore = Montage.create(Store,/** @lends module:montage/data/nosqlaccess/nosqlstore.NoSqlStore# */ {
20
21/**
22 Description TODO
23 @function
24 @param {Property} binder TODO
25 @returns {Boolean} true or false
26 */
27 canServiceBlueprintBinder: {
28 value: function(binder) {
29 if ((binder !== null) && (binder.storePrototypeName === "NoSqlStore")) {
30 // TODO [PJYF Apr 19 2011] We need to check that the connection url points to the same DB
31 return true;
32 }
33 return false;
34 }
35 },
36
37/**
38 Description TODO
39 @function
40 @param {Object} objectId TODO
41 @param {Property} context TODO
42 @param {Property} transactionId TODO
43 @returns null
44 */
45 pledgeForObjectId$Implementation: {
46 value: function(objectId, context, transactionId) {
47 // TODO [PJYF Apr 28 2011] We need to implement it.
48 return null;
49 }
50 },
51
52/**
53 Description TODO
54 @function
55 @param {Object} sourceObject TODO
56 @param {Property} relationship TODO
57 @param {Property} context TODO
58 @param {Property} transactionId TODO
59 @returns null
60 */
61 pledgeForSourceObjectRelationship$Implementation: {
62 value: function(sourceObject, relationship, context, transactionId) {
63 // TODO [PJYF Apr 28 2011] We need to implement it.
64 return null;
65 }
66 }
67
68});