2001-09-25 01:03:58 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-07-15 23:23:16 +00:00
|
|
|
*
|
2001-09-25 01:03:58 +00:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-07-15 23:23:16 +00:00
|
|
|
*
|
2001-09-25 01:03:58 +00:00
|
|
|
* 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.
|
1999-07-15 23:23:16 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-25 01:03:58 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1999-2000
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:43:54 +00:00
|
|
|
*
|
2001-09-25 01:03:58 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-09-01 00:54:35 +00:00
|
|
|
|
|
|
|
/* Defines the abstract interface for a principal. */
|
|
|
|
|
2001-07-31 19:05:34 +00:00
|
|
|
#include "nsISerializable.idl"
|
1999-09-01 00:54:35 +00:00
|
|
|
|
1999-08-20 09:51:02 +00:00
|
|
|
%{C++
|
|
|
|
struct JSPrincipals;
|
|
|
|
%}
|
|
|
|
|
2000-02-10 04:56:56 +00:00
|
|
|
interface nsIPref;
|
|
|
|
|
1999-08-20 09:51:02 +00:00
|
|
|
[ptr] native JSPrincipals(JSPrincipals);
|
1999-07-24 03:58:23 +00:00
|
|
|
|
1999-07-15 23:23:16 +00:00
|
|
|
[uuid(ff9313d0-25e1-11d2-8160-006008119d7a)]
|
2001-07-31 19:05:34 +00:00
|
|
|
interface nsIPrincipal : nsISerializable {
|
1999-11-11 22:10:36 +00:00
|
|
|
|
2001-07-31 19:05:34 +00:00
|
|
|
// Values of capabilities for each principal. Order is
|
|
|
|
// significant: if an operation is performed on a set
|
|
|
|
// of capabilities, the minimum is computed.
|
|
|
|
const short ENABLE_DENIED = 1;
|
|
|
|
const short ENABLE_UNKNOWN = 2;
|
|
|
|
const short ENABLE_WITH_USER_PERMISSION = 3;
|
|
|
|
const short ENABLE_GRANTED = 4;
|
1999-11-11 22:10:36 +00:00
|
|
|
|
2001-07-31 19:05:34 +00:00
|
|
|
string ToString();
|
2000-02-10 04:56:56 +00:00
|
|
|
|
2001-07-31 19:05:34 +00:00
|
|
|
string ToUserVisibleString();
|
1999-11-11 22:10:36 +00:00
|
|
|
|
2000-05-16 03:40:51 +00:00
|
|
|
void GetPreferences(out string prefName, out string id,
|
|
|
|
out string grantedList, out string deniedList);
|
2000-04-26 03:50:07 +00:00
|
|
|
|
2001-07-31 19:05:34 +00:00
|
|
|
boolean Equals(in nsIPrincipal other);
|
1999-11-11 22:10:36 +00:00
|
|
|
|
2001-07-31 19:05:34 +00:00
|
|
|
unsigned long HashValue();
|
1999-11-11 22:10:36 +00:00
|
|
|
|
2001-07-31 19:05:34 +00:00
|
|
|
JSPrincipals GetJSPrincipals();
|
1999-11-11 22:10:36 +00:00
|
|
|
|
|
|
|
short CanEnableCapability(in string capability);
|
|
|
|
|
|
|
|
void SetCanEnableCapability(in string capability, in short canEnable);
|
|
|
|
|
2000-06-03 09:46:12 +00:00
|
|
|
boolean IsCapabilityEnabled(in string capability, in voidPtr annotation);
|
2001-07-31 19:05:34 +00:00
|
|
|
|
|
|
|
void EnableCapability(in string capability, inout voidPtr annotation);
|
1999-11-11 22:10:36 +00:00
|
|
|
|
2000-06-03 09:46:12 +00:00
|
|
|
void RevertCapability(in string capability, inout voidPtr annotation);
|
1999-11-11 22:10:36 +00:00
|
|
|
|
2000-06-03 09:46:12 +00:00
|
|
|
void DisableCapability(in string capability, inout voidPtr annotation);
|
1999-07-24 03:58:23 +00:00
|
|
|
};
|