1999-07-16 03:23:16 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
1999-11-06 06:43:54 +03: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-16 03:23:16 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03: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-16 03:23:16 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-07-16 03:23:16 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
2000-02-10 07:56:56 +03:00
|
|
|
* Copyright (C) 1999-2000 Netscape Communications Corporation. All
|
1999-11-06 06:43:54 +03:00
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2000-02-10 07:56:56 +03:00
|
|
|
* Norris Boyd
|
2000-04-26 07:50:07 +04:00
|
|
|
* Mitch Stoltz
|
1999-07-16 03:23:16 +04:00
|
|
|
*/
|
1999-09-01 04:54:35 +04:00
|
|
|
|
|
|
|
/* Defines the abstract interface for a principal. */
|
|
|
|
|
1999-07-16 03:23:16 +04:00
|
|
|
#include "nsISupports.idl"
|
1999-09-01 04:54:35 +04:00
|
|
|
|
1999-08-20 13:51:02 +04:00
|
|
|
%{C++
|
|
|
|
struct JSPrincipals;
|
|
|
|
%}
|
|
|
|
|
2000-02-10 07:56:56 +03:00
|
|
|
interface nsIPref;
|
|
|
|
|
1999-08-20 13:51:02 +04:00
|
|
|
[ptr] native JSPrincipals(JSPrincipals);
|
1999-07-24 07:58:23 +04:00
|
|
|
|
1999-07-16 03:23:16 +04:00
|
|
|
[uuid(ff9313d0-25e1-11d2-8160-006008119d7a)]
|
|
|
|
interface nsIPrincipal : nsISupports {
|
1999-11-12 01:10:36 +03:00
|
|
|
|
2000-03-11 09:32:42 +03: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-12 01:10:36 +03:00
|
|
|
const short ENABLE_WITH_USER_PERMISSION = 3;
|
2000-03-11 09:32:42 +03:00
|
|
|
const short ENABLE_GRANTED = 4;
|
1999-11-12 01:10:36 +03:00
|
|
|
|
2000-02-10 07:56:56 +03:00
|
|
|
string ToString();
|
|
|
|
|
|
|
|
string ToUserVisibleString();
|
1999-11-12 01:10:36 +03:00
|
|
|
|
2000-05-16 07:40:51 +04:00
|
|
|
void GetPreferences(out string prefName, out string id,
|
|
|
|
out string grantedList, out string deniedList);
|
2000-04-26 07:50:07 +04:00
|
|
|
|
2000-02-10 07:56:56 +03:00
|
|
|
boolean Equals(in nsIPrincipal other);
|
1999-11-12 01:10:36 +03:00
|
|
|
|
|
|
|
unsigned long HashValue();
|
|
|
|
|
2000-02-10 07:56:56 +03:00
|
|
|
JSPrincipals GetJSPrincipals();
|
1999-11-12 01:10:36 +03:00
|
|
|
|
|
|
|
short CanEnableCapability(in string capability);
|
|
|
|
|
|
|
|
void SetCanEnableCapability(in string capability, in short canEnable);
|
|
|
|
|
|
|
|
boolean IsCapabilityEnabled(in string capability, in voidStar annotation);
|
|
|
|
|
|
|
|
void EnableCapability(in string capability, inout voidStar annotation);
|
|
|
|
|
|
|
|
void RevertCapability(in string capability, inout voidStar annotation);
|
|
|
|
|
|
|
|
void DisableCapability(in string capability, inout voidStar annotation);
|
1999-07-24 07:58:23 +04:00
|
|
|
};
|
|
|
|
|
1999-08-20 13:51:02 +04:00
|
|
|
|