aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/data/ldap-access/ldap-mapping.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/data/ldap-access/ldap-mapping.js')
-rw-r--r--node_modules/montage/data/ldap-access/ldap-mapping.js61
1 files changed, 61 insertions, 0 deletions
diff --git a/node_modules/montage/data/ldap-access/ldap-mapping.js b/node_modules/montage/data/ldap-access/ldap-mapping.js
new file mode 100644
index 00000000..7af0454b
--- /dev/null
+++ b/node_modules/montage/data/ldap-access/ldap-mapping.js
@@ -0,0 +1,61 @@
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/ldap-mapping
8 @requires montage/core/core
9 @requires montage/core/logger
10 @requires montage/data/mapping
11 */
12var Montage = require("montage").Montage;
13var BinderMapping = require("data/mapping").BinderMapping;
14var BlueprintMapping = require("data/mapping").BlueprintMapping;
15var AttributeMapping = require("data/mapping").AttributeMapping;
16var AssociationMapping = require("data/mapping").AssociationMapping;
17var logger = require("core/logger").logger("ldap-mapping");
18
19/**
20 * TODO
21 @class module:montage/data/ldap-access/ldap-mapping.LdapBinderMapping
22 @extends module:montage/data/mapping.BinderMapping
23 */
24var LdapBinderMapping = exports.LdapBinderMapping = Montage.create(BinderMapping, /** @lends module:montage/data/ldap-access/ldap-mapping.LdapBinderMapping# */ {
25
26
27});
28
29
30/**
31 * TODO
32 @class module:montage/data/ldap-access/ldap-mapping.LdapBlueprintMapping
33 @extends module:montage/data/mapping.BlueprintMapping
34 */
35var LdapBlueprintMapping = exports.LdapBlueprintMapping = Montage.create(BlueprintMapping, /** @lends module:montage/data/ldap-access/ldap-mapping.LdapBlueprintMapping# */ {
36
37
38});
39
40
41/**
42 * TODO
43 @class module:montage/data/ldap-access/ldap-mapping.LdapAttributeMapping
44 @extends module:montage/data/mapping.AttributeMapping
45 */
46var LdapAttributeMapping = exports.LdapAttributeMapping = Montage.create(AttributeMapping, /** @lends module:montage/data/ldap-access/ldap-mapping.LdapAttributeMapping# */ {
47
48
49});
50
51
52/**
53 * TODO
54 @class module:montage/data/ldap-access/ldap-mapping.LdapAssociationMapping
55 @extends module:montage/data/mapping.AssociationMapping
56 */
57var LdapAssociationMapping = exports.LdapAssociationMapping = Montage.create(AssociationMapping, /** @lends module:montage/data/ldap-access/ldap-mapping.LdapAssociationMapping# */ {
58
59
60});
61