2001-09-20 04:02:59 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
1998-09-17 22:12:32 +04:00
|
|
|
*
|
2001-09-20 04:02:59 +04:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
1999-11-06 06:43:54 +03:00
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
2001-09-20 04:02:59 +04:00
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1998-09-17 22:12:32 +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.
|
1998-09-17 22:12:32 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-20 04:02:59 +04:00
|
|
|
* The Initial Developer of the Original Code is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
2000-02-10 07:56:56 +03:00
|
|
|
* Copyright (C) 1998-2000 Netscape Communications Corporation. All
|
1999-11-06 06:43:54 +03:00
|
|
|
* Rights Reserved.
|
|
|
|
*
|
2001-09-20 04:02:59 +04:00
|
|
|
* Contributor(s):
|
|
|
|
* Norris Boyd
|
|
|
|
*/
|
1999-11-12 01:10:36 +03:00
|
|
|
|
|
|
|
/* describes principals by their orginating URIs */
|
|
|
|
|
1999-07-24 07:58:23 +04:00
|
|
|
#ifndef _NS_CODEBASE_PRINCIPAL_H_
|
|
|
|
#define _NS_CODEBASE_PRINCIPAL_H_
|
1998-09-17 22:12:32 +04:00
|
|
|
|
1999-08-20 13:51:02 +04:00
|
|
|
#include "jsapi.h"
|
1999-11-12 01:10:36 +03:00
|
|
|
#include "nsBasePrincipal.h"
|
1999-09-01 04:54:35 +04:00
|
|
|
#include "nsICodebasePrincipal.h"
|
1999-08-20 13:51:02 +04:00
|
|
|
#include "nsIURI.h"
|
2000-05-16 07:40:51 +04:00
|
|
|
#include "nsCOMPtr.h"
|
1999-08-20 13:51:02 +04:00
|
|
|
|
|
|
|
#define NS_CODEBASEPRINCIPAL_CID \
|
|
|
|
{ 0x7ee2a400, 0x0b91, 0xaad3, \
|
|
|
|
{ 0xba, 0x18, 0xd7, 0x60, 0xb0, 0xf1, 0x99, 0xa2 }}
|
1998-09-17 22:12:32 +04:00
|
|
|
|
2000-01-11 04:45:34 +03:00
|
|
|
class nsCodebasePrincipal : public nsBasePrincipal, public nsICodebasePrincipal {
|
1998-09-17 22:12:32 +04:00
|
|
|
public:
|
1999-08-30 01:58:42 +04:00
|
|
|
|
|
|
|
NS_DEFINE_STATIC_CID_ACCESSOR(NS_CODEBASEPRINCIPAL_CID)
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2001-07-31 23:05:34 +04:00
|
|
|
NS_DECL_NSISERIALIZABLE
|
1999-08-30 01:58:42 +04:00
|
|
|
NS_DECL_NSICODEBASEPRINCIPAL
|
|
|
|
|
1999-11-12 01:10:36 +03:00
|
|
|
NS_IMETHOD ToString(char **result);
|
|
|
|
|
2000-02-10 07:56:56 +03:00
|
|
|
NS_IMETHOD ToUserVisibleString(char **result);
|
2000-05-16 07:40:51 +04:00
|
|
|
|
|
|
|
NS_IMETHOD GetPreferences(char** aPrefName, char** aID,
|
|
|
|
char** aGrantedList, char** aDeniedList);
|
|
|
|
|
1999-11-12 01:10:36 +03:00
|
|
|
NS_IMETHOD Equals(nsIPrincipal *other, PRBool *result);
|
|
|
|
|
|
|
|
NS_IMETHOD HashValue(PRUint32 *result);
|
|
|
|
|
|
|
|
NS_IMETHOD CanEnableCapability(const char *capability, PRInt16 *result);
|
|
|
|
|
1999-08-30 01:58:42 +04:00
|
|
|
nsCodebasePrincipal();
|
|
|
|
|
2000-01-19 00:54:01 +03:00
|
|
|
nsresult
|
1999-08-30 01:58:42 +04:00
|
|
|
Init(nsIURI *uri);
|
|
|
|
|
2000-01-19 00:54:01 +03:00
|
|
|
nsresult
|
2000-05-16 07:40:51 +04:00
|
|
|
InitFromPersistent(const char* aPrefName, const char* aID,
|
|
|
|
const char* aGrantedList, const char* aDeniedList);
|
2000-01-19 00:54:01 +03:00
|
|
|
|
1999-08-30 01:58:42 +04:00
|
|
|
virtual ~nsCodebasePrincipal(void);
|
|
|
|
|
1998-09-17 22:12:32 +04:00
|
|
|
protected:
|
2000-05-16 07:40:51 +04:00
|
|
|
nsCOMPtr<nsIURI> mURI;
|
1998-09-17 22:12:32 +04:00
|
|
|
};
|
|
|
|
|
1999-07-24 07:58:23 +04:00
|
|
|
#endif // _NS_CODEBASE_PRINCIPAL_H_
|