aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/data/ldapaccess/ldapstore.js
diff options
context:
space:
mode:
authorEric Guzman2012-06-20 19:42:03 -0700
committerEric Guzman2012-06-20 19:42:03 -0700
commit3270aac4980c908f305fb53abadda5121ff6b9cb (patch)
tree6255aaab239fde71b1f4862dd70de7be62f48b85 /node_modules/montage/data/ldapaccess/ldapstore.js
parenta5d93daf6fdccbfee160d6a8ba08f6b6d4b9d7cc (diff)
parent87377c81da06abf6d656017859830a3ab2902f0e (diff)
downloadninja-3270aac4980c908f305fb53abadda5121ff6b9cb.tar.gz
Merge branch 'binding' of github.com:dhg637/ninja-internal into binding
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});