summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/addrbook/public/nsIMsgVCardService.idl
blob: b2d542f14c824da16691f218d6d85bf00f418088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* 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 "nsISupports.idl"

interface nsIAbCard;

[scriptable, uuid(8b6ae917-676d-4f1f-bbad-2ecc9be0d9b1)]
interface nsIMsgVCardService : nsISupports {

  /**
   * Translates a vCard string into a nsIAbCard.
   *
   * @param vCardStr - The string containing the vCard data.
   * @return - A card containing the translated vCard data.
   */
  nsIAbCard vCardToAbCard(in AString vCardStr);

  /**
   * Translates an URL-encoded vCard string into a nsIAbCard.
   *
   * @param escapedVCardStr - The string containing the vCard data.
   * @return - A card containing the translated vCard data.
   */
  nsIAbCard escapedVCardToAbCard(in AString escapedVCardStr);

  /**
   * Translates a nsIAbCard into an URL-encoded vCard.
   *
   * @param abCard - A card to be translated.
   * @return - The string containing the vCard data.
   */
  AString abCardToEscapedVCard(in nsIAbCard abCard);
};