1999-07-15 23:23:16 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
1999-11-06 03:43:54 +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
|
|
|
*
|
1999-11-06 03:43:54 +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.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-07-15 23:23:16 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
2000-02-10 04:56:56 +00:00
|
|
|
* Copyright (C) 1999-2000 Netscape Communications Corporation. All
|
1999-11-06 03:43:54 +00:00
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2000-02-10 04:56:56 +00:00
|
|
|
* Norris Boyd
|
2000-04-26 03:50:07 +00:00
|
|
|
* Mitch Stoltz
|
1999-07-15 23:23:16 +00:00
|
|
|
*/
|
1999-09-01 00:54:35 +00:00
|
|
|
|
|
|
|
/* Defines the abstract interface for a principal. */
|
|
|
|
|
1999-07-15 23:23:16 +00:00
|
|
|
#include "nsISupports.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)]
|
|
|
|
interface nsIPrincipal : nsISupports {
|
1999-11-11 22:10:36 +00:00
|
|
|
|
2000-03-11 06:32:42 +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;
|
1999-11-11 22:10:36 +00:00
|
|
|
const short ENABLE_WITH_USER_PERMISSION = 3;
|
2000-03-11 06:32:42 +00:00
|
|
|
const short ENABLE_GRANTED = 4;
|
1999-11-11 22:10:36 +00:00
|
|
|
|
2000-02-10 04:56:56 +00:00
|
|
|
string ToString();
|
|
|
|
|
|
|
|
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
|
|
|
|
2000-02-10 04:56:56 +00:00
|
|
|
boolean Equals(in nsIPrincipal other);
|
1999-11-11 22:10:36 +00:00
|
|
|
|
|
|
|
unsigned long HashValue();
|
|
|
|
|
2000-02-10 04:56:56 +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);
|
1999-11-11 22:10:36 +00:00
|
|
|
|
2000-06-03 09:46:12 +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
|
|
|
};
|
|
|
|
|
1999-08-20 09:51:02 +00:00
|
|
|
|