1 | /* ***** BEGIN LICENSE BLOCK ***** |
---|
2 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
---|
3 | * |
---|
4 | * The contents of this file are subject to the Mozilla Public License Version |
---|
5 | * 1.1 (the "License"); you may not use this file except in compliance with |
---|
6 | * the License. You may obtain a copy of the License at |
---|
7 | * http://www.mozilla.org/MPL/ |
---|
8 | * |
---|
9 | * Software distributed under the License is distributed on an "AS IS" basis, |
---|
10 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
---|
11 | * for the specific language governing rights and limitations under the |
---|
12 | * License. |
---|
13 | * |
---|
14 | * The Original Code is mozilla.org code. |
---|
15 | * |
---|
16 | * The Initial Developer of the Original Code is |
---|
17 | * <rdayal@netscape.com> |
---|
18 | * |
---|
19 | * Portions created by the Initial Developer are Copyright (C) 2002 |
---|
20 | * the Initial Developer. All Rights Reserved. |
---|
21 | * |
---|
22 | * Contributor(s): |
---|
23 | * |
---|
24 | * Alternatively, the contents of this file may be used under the terms of |
---|
25 | * either the GNU General Public License Version 2 or later (the "GPL"), or |
---|
26 | * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), |
---|
27 | * in which case the provisions of the GPL or the LGPL are applicable instead |
---|
28 | * of those above. If you wish to allow use of your version of this file only |
---|
29 | * under the terms of either the GPL or the LGPL, and not to allow others to |
---|
30 | * use your version of this file under the terms of the MPL, indicate your |
---|
31 | * decision by deleting the provisions above and replace them with the notice |
---|
32 | * and other provisions required by the GPL or the LGPL. If you do not delete |
---|
33 | * the provisions above, a recipient may use your version of this file under |
---|
34 | * the terms of any one of the MPL, the GPL or the LGPL. |
---|
35 | * |
---|
36 | * ***** END LICENSE BLOCK ***** */ |
---|
37 | |
---|
38 | #include "nsISupports.idl" |
---|
39 | |
---|
40 | %{ C++ |
---|
41 | #include "nsDirPrefs.h" |
---|
42 | %} |
---|
43 | [ptr] native DIR_Server(DIR_Server); |
---|
44 | |
---|
45 | interface nsIWebProgressListener; |
---|
46 | interface nsILDAPURL; |
---|
47 | interface nsILDAPConnection; |
---|
48 | interface nsILDAPOperation; |
---|
49 | |
---|
50 | /** |
---|
51 | * this interface provides methods to perform LDAP Replication Queries |
---|
52 | */ |
---|
53 | [scriptable, uuid(00D568A1-3C3B-11d6-B7B9-00B0D06E5F27)] |
---|
54 | interface nsIAbLDAPReplicationQuery : nsISupports { |
---|
55 | |
---|
56 | readonly attribute nsILDAPURL replicationURL; |
---|
57 | readonly attribute nsILDAPConnection connection; |
---|
58 | readonly attribute nsILDAPOperation operation; |
---|
59 | |
---|
60 | [noscript] readonly attribute DIR_Server replicationServerInfo; |
---|
61 | |
---|
62 | /** |
---|
63 | * initialize for the query |
---|
64 | */ |
---|
65 | void init (in ACString aPrefName, in nsIWebProgressListener aProgressListener); |
---|
66 | |
---|
67 | /** |
---|
68 | * Starts an LDAP query to do replication as needed |
---|
69 | */ |
---|
70 | void doReplicationQuery(); |
---|
71 | |
---|
72 | /** |
---|
73 | * connects to an LDAP Server using a DN |
---|
74 | */ |
---|
75 | void connectToLDAPServer(in nsILDAPURL aURL, in AUTF8String aAuthDN); |
---|
76 | |
---|
77 | /** |
---|
78 | * Starts an LDAP query to replicate all entries |
---|
79 | */ |
---|
80 | void queryAllEntries(); |
---|
81 | |
---|
82 | /** |
---|
83 | * Cancels the currently executing query |
---|
84 | */ |
---|
85 | void cancelQuery(); |
---|
86 | |
---|
87 | /** |
---|
88 | * this method is the callback when query is done, failed or successful |
---|
89 | */ |
---|
90 | void done(in boolean aSuccess); |
---|
91 | }; |
---|
92 | |
---|
93 | |
---|
94 | [scriptable, uuid(126202D1-4460-11d6-B7C2-00B0D06E5F27)] |
---|
95 | interface nsIAbLDAPChangeLogQuery : nsISupports { |
---|
96 | /** |
---|
97 | * Starts an LDAP query to find auth DN |
---|
98 | */ |
---|
99 | void queryAuthDN(in AUTF8String aValueUsedToFindDn); |
---|
100 | |
---|
101 | /** |
---|
102 | * Starts an LDAP query to search server's Root DSE |
---|
103 | */ |
---|
104 | void queryRootDSE(); |
---|
105 | |
---|
106 | /** |
---|
107 | * Starts an LDAP ChangeLog query to find changelog entries |
---|
108 | */ |
---|
109 | void queryChangeLog(in AUTF8String aChangeLogDN, in PRInt32 aLastChangeNo); |
---|
110 | |
---|
111 | /** |
---|
112 | * Starts an LDAP query to find changed entries |
---|
113 | */ |
---|
114 | void queryChangedEntries(in AUTF8String aChangedEntryDN); |
---|
115 | }; |
---|
116 | |
---|