aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/data/ldapaccess/ldapstore.js
diff options
context:
space:
mode:
authorKruti Shah2012-06-20 15:12:48 -0700
committerKruti Shah2012-06-20 15:12:48 -0700
commit1fe1202ba87d6de9b0f0d8efee78f955c5350210 (patch)
tree26ff4c6c5a94accfd5801f124244d3eef152a5c7 /node_modules/montage/data/ldapaccess/ldapstore.js
parent1ce4bd7033a413c7697888e5712f278219d6d095 (diff)
parent782b66c783df4a9c36fa240cc77900e69b9130cf (diff)
downloadninja-1fe1202ba87d6de9b0f0d8efee78f955c5350210.tar.gz
Merge branch 'refs/heads/TimelineUberJD' into Timeline-local-kruti
Diffstat (limited to 'node_modules/montage/data/ldapaccess/ldapstore.js')
-rwxr-xr-xnode_modules/montage/data/ldapaccess/ldapstore.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/node_modules/montage/data/ldapaccess/ldapstore.js b/node_modules/montage/data/ldapaccess/ldapstore.js
deleted file mode 100755
index b92517f2..00000000
--- a/node_modules/montage/data/ldapaccess/ldapstore.js
+++ /dev/null
@@ -1,38 +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/ldapaccess/ldapstore
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("ldapstore");
15/**
16 @class module:montage/data/ldapaccess/ldapstore.LdapStore
17 @extends module:montage/core/core.Montage
18*/
19var LdapStore = exports.LdapStore = Montage.create(Store,/** @lends module:montage/data/ldapaccess/ldapstore.LdapStore# */ {
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 === "LdapStore")) {
30 // TODO [PJYF Apr 28 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});