NOT PART OF THE BUILD

Checking in new idl files for LDAP Replication, bug # 128086.
r/sr=sspitzer, a=asa
This commit is contained in:
rdayal%netscape.com 2002-03-22 09:33:19 +00:00
parent 3fce2689ea
commit 5c857d74bf
3 changed files with 208 additions and 0 deletions

View File

@ -0,0 +1,82 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2001 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Rajiv Dayal <rdayal@netscape.com>
*
* nsIAbLDAPProcessReplicationData.idl
*/
#include "nsISupports.idl"
#include "nsILDAPMessageListener.idl"
interface nsIAbLDAPReplicationQuery;
interface nsIWebProgressListener;
/**
* this service does replication of an LDAP directory to a local Mork AB Database.
*/
[scriptable, uuid(00D568A2-3C3B-11d6-B7B9-00B0D06E5F27)]
interface nsIAbLDAPProcessReplicationData : nsILDAPMessageListener {
/**
* readonly attribute giving the current replication state
*/
readonly attribute PRInt32 replicationState;
/**
* replication states
*/
const long kQueryNotStarted = 0;
const long kAnonymousBinding = 1;
const long kAuthenticatedBinding = 2;
const long kSearchingAuthDN = 3;
const long kDecidingProtocol = 4;
const long kAuthenticating = 5;
const long kReplicatingAll = 6;
const long kSearchingRootDSE = 7;
const long kFindingChanges = 8;
const long kReplicatingChanges = 9;
const long kReplicationDone = 10;
/**
* readonly attribute giving the current protocol used
*/
readonly attribute PRInt32 protocolUsed ;
/**
* replication protocols
*/
const long kDefaultDownloadAll = 0;
const long kChangeLogProtocol = 1;
const long kLCUPProtocol = 2;
const long kLastUpdatedTimeStampMethod = 3;
/**
* this method initializes the implementation
*/
void init (in nsIAbLDAPReplicationQuery query, in nsIWebProgressListener progressListener);
/**
* this method a aborts the ongoing processing
*/
void abort();
};

View File

@ -0,0 +1,75 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2001 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Rajiv Dayal <rdayal@netscape.com>
*
* nsIAbLDAPReplicationQuery.idl
*/
#include "nsISupports.idl"
%{ C++
#include "nsDirPrefs.h"
%}
[ptr] native DIR_ReplicationInfo(DIR_ReplicationInfo);
interface nsIWebProgressListener;
interface nsILDAPURL;
interface nsILDAPConnection;
interface nsILDAPOperation;
/**
* this interface provides methods to perform LDAP Replication Queries
*/
[scriptable, uuid(00D568A1-3C3B-11d6-B7B9-00B0D06E5F27)]
interface nsIAbLDAPReplicationQuery : nsISupports {
readonly attribute nsILDAPURL replicationURL;
readonly attribute nsILDAPConnection connection;
readonly attribute nsILDAPOperation operation;
[noscript] readonly attribute DIR_ReplicationInfo replicationInfo;
/**
* initialize for the query
*/
void init (in ACString aPrefName, in nsIWebProgressListener aProgressListener);
/**
* Starts an LDAP query to do replication as needed
*/
void doReplicationQuery();
/**
* Starts an LDAP query to replicate all entries
*/
void queryAllEntries();
/**
* Cancels the currently executing query
*/
void cancelQuery();
/**
* this method is the callback when query is done, failed or successful
*/
void done(in PRBool aSuccess);
};

View File

@ -0,0 +1,51 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2001 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Rajiv Dayal <rdayal@netscape.com>
*
* nsIAbLDAPReplicationService.idl
*/
#include "nsISupports.idl"
interface nsIWebProgressListener;
/**
* this service does replication of an LDAP directory to a local Mork AB Database.
*/
[scriptable, uuid(00D568A0-3C3B-11d6-B7B9-00B0D06E5F27)]
interface nsIAbLDAPReplicationService: nsISupports {
/**
* Start Replication of given LDAP directory represented by the URI
*/
void startReplication(in ACString aPrefName, in nsIWebProgressListener progressListener);
/**
* Cancel Replication of given LDAP directory represented by the URI
*/
void cancelReplication(in ACString aPrefName);
/**
* callback when replication is done, failure or success
*/
void done(in PRBool aSuccess);
};