aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/data/nosql-access/nosql-store.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/data/nosql-access/nosql-store.js')
-rwxr-xr-xnode_modules/montage/data/nosql-access/nosql-store.js102
1 files changed, 102 insertions, 0 deletions
diff --git a/node_modules/montage/data/nosql-access/nosql-store.js b/node_modules/montage/data/nosql-access/nosql-store.js
new file mode 100755
index 00000000..ae6827c8
--- /dev/null
+++ b/node_modules/montage/data/nosql-access/nosql-store.js
@@ -0,0 +1,102 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No 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/nosql-access/nosql-store
8 @requires montage/core/core
9 @requires montage/data/store
10 @requires montage/core/logger
11 @requires data/nosql-access/nosql-mapping
12 */
13var Montage = require("montage").Montage;
14var Store = require("data/store").Store;
15var NoSqlBinderMapping = require("data/nosql-access/nosql-mapping").NoSqlBinderMapping;
16var NoSqlBlueprintMapping = require("data/nosql-access/nosql-mapping").NoSqlBlueprintMapping;
17var NoSqlAttributeMapping = require("data/nosql-access/nosql-mapping").NoSqlAttributeMapping;
18var NoSqlAssociationMapping = require("data/nosql-access/nosql-mapping").NoSqlAssociationMapping;
19var logger = require("core/logger").logger("nosql-store");
20/**
21 @class module:montage/data/nosql-access/nosql-store.NoSqlStore
22 @extends module:montage/data/store.Store
23 */
24var NoSqlStore = exports.NoSqlStore = Montage.create(Store, /** @lends module:montage/data/nosql-access/nosql-store.NoSqlStore# */ {
25
26 /**
27 Create a new binder mapping.
28 @function
29 @returns binder mapping
30 */
31 createBinderMapping:{
32 get:function () {
33 return NoSqlBinderMapping.create();
34 }
35 },
36
37 /**
38 Create a new blueprint mapping.
39 @function
40 @returns blueprint mapping
41 */
42 createBlueprintMapping:{
43 get:function () {
44 return NoSqlBlueprintMapping.create();
45 }
46 },
47
48 /**
49 Create a new attribute mapping.
50 @function
51 @returns attribute mapping
52 */
53 createAttributeMapping:{
54 get:function () {
55 return NoSqlAttributeMapping.create();
56 }
57 },
58
59 /**
60 Create a new association mapping.
61 @function
62 @returns association mapping
63 */
64 createAssociationMapping:{
65 get:function () {
66 return NoSqlAssociationMapping.create();
67 }
68 },
69
70
71 /**
72 Description TODO
73 @function
74 @param {Object} objectId TODO
75 @param {Property} context TODO
76 @param {Property} transactionId TODO
77 @returns null
78 */
79 pledgeForObjectId$Implementation:{
80 value:function (objectId, context, transactionId) {
81 // TODO [PJYF Apr 28 2011] We need to implement it.
82 return null;
83 }
84 },
85
86 /**
87 Description TODO
88 @function
89 @param {Object} sourceObject TODO
90 @param {Property} relationship TODO
91 @param {Property} context TODO
92 @param {Property} transactionId TODO
93 @returns null
94 */
95 pledgeForSourceObjectAssociation$Implementation:{
96 value:function (sourceObject, relationship, context, transactionId) {
97 // TODO [PJYF Apr 28 2011] We need to implement it.
98 return null;
99 }
100 }
101
102});