From 302bf1b523012e11b60425d6eee1221ebc2724eb Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Sun, 3 Nov 2019 00:17:46 -0400 Subject: Issue #1258 - Part 1: Import mailnews, ldap, and mork from comm-esr52.9.1 --- mailnews/addrbook/public/nsIAbLDAPCard.idl | 56 ++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 mailnews/addrbook/public/nsIAbLDAPCard.idl (limited to 'mailnews/addrbook/public/nsIAbLDAPCard.idl') diff --git a/mailnews/addrbook/public/nsIAbLDAPCard.idl b/mailnews/addrbook/public/nsIAbLDAPCard.idl new file mode 100644 index 000000000..6761623f2 --- /dev/null +++ b/mailnews/addrbook/public/nsIAbLDAPCard.idl @@ -0,0 +1,56 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "nsIAbCard.idl" + +interface nsIAbLDAPAttributeMap; +interface nsILDAPModification; +interface nsILDAPMessage; +interface nsIArray; + +[scriptable, uuid(2831b3b0-30ef-4070-8ad3-90ae04980e11)] +interface nsIAbLDAPCard : nsISupports +{ + /** + * Returns the required information for an LDAP update message. + * + * @param aAttrMap The map between LDAP attributes and card properties + * @param aClassCount The number of objectClass values + * @param aClasses The objectClass values that the card needs to have + * @param updateType This should be one of: + * nsILDAPModification::MOD_ADD + * nsILDAPModification::MOD_REPLACE + * + * @return Returns an array of modifications required to + * add or replace the card in the ldap directory. + */ + nsIArray getLDAPMessageInfo(in nsIAbLDAPAttributeMap aAttrMap, + in unsigned long aClassCount, + [array, size_is(aClassCount)] in string aClasses, + in long updateType); + + /** + * Builds a relative distinguished name (RDN) with the given set of + * attributes. + * + * @param aAttrMap The map between LDAP attributes and card properties + * @param aAttrCount The number of attributes to use for the RDN + * @param aAttributes The name of the attributes to use for the RDN + * + */ + ACString buildRdn(in nsIAbLDAPAttributeMap aAttrMap, + in unsigned long aAttrCount, + [array, size_is(aAttrCount)] in string aAttributes); + + /** + * Stores meta-properties from a raw LDAP search result. + * + * @param aMessage The LDAP search result message. + * + */ + void setMetaProperties(in nsILDAPMessage aMessage); + + attribute ACString dn; +}; -- cgit v1.2.3