b=450088 backing out (new reftest failed)
[wine-gecko.git] / modules / libjar / nsIJAR.idl
blob8ac04713dbbddcfdb90b8aa6099515ac86571981
1 /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
16 * The Original Code is Mozilla Communicator client code, released
17 * March 31, 1998.
19 * The Initial Developer of the Original Code is
20 * Netscape Communications Corporation.
21 * Portions created by the Initial Developer are Copyright (C) 1998
22 * the Initial Developer. All Rights Reserved.
24 * Contributor(s):
25 * Daniel Veditz <dveditz@netscape.com>
26 * Don Bragg <dbragg@netscape.com>
27 * Samir Gehani <sgehani@netscape.com>
28 * Mitch Stoltz <mstoltz@netscape.com>
30 * Alternatively, the contents of this file may be used under the terms of
31 * either the GNU General Public License Version 2 or later (the "GPL"), or
32 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
33 * in which case the provisions of the GPL or the LGPL are applicable instead
34 * of those above. If you wish to allow use of your version of this file only
35 * under the terms of either the GPL or the LGPL, and not to allow others to
36 * use your version of this file under the terms of the MPL, indicate your
37 * decision by deleting the provisions above and replace them with the notice
38 * and other provisions required by the GPL or the LGPL. If you do not delete
39 * the provisions above, a recipient may use your version of this file under
40 * the terms of any one of the MPL, the GPL or the LGPL.
42 * ***** END LICENSE BLOCK ***** */
44 #include "nsISupports.idl"
46 %{C++
47 #define NS_JAR_CID \
48 { /* 04501DB3-0409-11d3-BCF8-00805F0E1353*/ \
49 0x04501DB3, \
50 0x0409, \
51 0x11d3, \
52 {0xbc, 0xf8, 0x00, 0x80, 0x5f, 0x0e, 0x13, 0x53} \
55 #define NS_JAR_CONTRACTID \
56 "@mozilla.org/libjar;1"
58 #define NS_IJARFactory_IID \
59 { /* 04501DB4-0409-11d3-BCF8-00805F0E1353 */ \
60 0x04501DB4, \
61 0x0409, \
62 0x11d3, \
63 {0xbc, 0xf8, 0x00, 0x80, 0x5f, 0x0e, 0x13, 0x53} \
66 #define NS_JARFactory_CID \
67 { /* 04501DB5-0409-11d3-BCF8-00805F0E1353 */ \
68 0x04501DB5, \
69 0x0409, \
70 0x11d3, \
71 {0xbc, 0xf8, 0x00, 0x80, 0x5f, 0x0e, 0x13, 0x53} \
75 interface nsIPrincipal;
77 [uuid(04501DB2-0409-11d3-BCF8-00805F0E1353)]
78 interface nsIJAR : nsISupports
80 /**
81 * Returns an object describing the entity which signed
82 * an entry. parseManifest must be called first. If aEntryName is an
83 * entry in the jar, getInputStream must be called after parseManifest.
84 * If aEntryName is an external file which has meta-information
85 * stored in the jar, verifyExternalFile (not yet implemented) must
86 * be called before getPrincipal.
88 void getCertificatePrincipal(in string aEntryName, out nsIPrincipal aPrincipal);
90 readonly attribute PRUint32 manifestEntriesCount;