source: trunk/third/firefox/mailnews/addrbook/public/nsIAbLDAPReplicationData.idl @ 21695

Revision 21695, 3.4 KB checked in by rbasch, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r21694, which included commits to RCS files with non-trunk default branches.
Line 
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#include "nsILDAPMessageListener.idl"
40
41interface nsIAbLDAPReplicationQuery;
42interface nsIWebProgressListener;
43
44/**
45 * this service does replication of an LDAP directory to a local Mork AB Database.
46 */
47[scriptable, uuid(00D568A2-3C3B-11d6-B7B9-00B0D06E5F27)]
48interface nsIAbLDAPProcessReplicationData : nsILDAPMessageListener {
49   
50   /**
51     * readonly attribute giving the current replication state
52     */
53    readonly attribute PRInt32 replicationState;
54
55   /**
56     * replication states
57     */
58    const long kIdle                  = 0;
59    const long kAnonymousBinding      = 1;
60    const long kAuthenticatedBinding  = 2;
61    const long kSyncServerBinding     = 3;
62    const long kSearchingAuthDN       = 4;
63    const long kDecidingProtocol      = 5;
64    const long kAuthenticating        = 6;
65    const long kReplicatingAll        = 7;
66    const long kSearchingRootDSE      = 8;
67    const long kFindingChanges        = 9;
68    const long kReplicatingChanges    = 10;
69    const long kReplicationDone       = 11;
70
71   /**
72     * readonly attribute giving the current protocol used
73     */
74    readonly attribute PRInt32 protocolUsed ;
75
76   /**
77     * replication protocols
78     */
79    const long kDefaultDownloadAll         = 0;
80    const long kChangeLogProtocol          = 1;
81    const long kLCUPProtocol               = 2;
82    const long kLastUpdatedTimeStampMethod = 3;
83
84   /**
85     * this method initializes the implementation
86     */
87    void init (in nsIAbLDAPReplicationQuery query, in nsIWebProgressListener progressListener);
88
89   /**
90     * this method a aborts the ongoing processing
91     */
92    void abort();
93   
94   /**
95     * this utility method populates authentication data from Dir Server
96     */
97   void populateAuthData();
98};
99
Note: See TracBrowser for help on using the repository browser.