Files
Mozilla/mozilla/caps/include/nsCodebasePrincipal.h
arielb%netscape.com d771c8f4bf NSIPRINCIPALS BABY!!!!!!!!!!!!
git-svn-id: svn://10.0.0.236/branches/SecurityM9_BRANCH@43358 18797224-902f-48f8-a5cc-f745e15eee43
1999-08-15 21:08:16 +00:00

75 lines
1.8 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/* describes principals by their orginating uris*/
#ifndef _NS_CODEBASE_PRINCIPAL_H_
#define _NS_CODEBASE_PRINCIPAL_H_
#include "jsapi.h"
#include "nsIPrincipal.h"
#include "nsIURI.h"
class nsCodebasePrincipal : JSPrincipals,
public nsICodebasePrincipal {
public:
NS_DECL_ISUPPORTS
NS_IMETHOD
GetURLString(char ** cburl);
NS_IMETHOD
GetURL(nsIURI * * url);
NS_IMETHOD
IsCodebaseExact(PRBool * result);
NS_IMETHOD
IsCodebaseRegex(PRBool * result);
NS_IMETHOD
ToJSPrincipal(JSPrincipals * * jsprin);
NS_IMETHOD
GetType(PRInt16 * type);
NS_IMETHOD
IsSecure(PRBool * result);
NS_IMETHOD
ToString(char ** result);
NS_IMETHOD
HashCode(PRUint32 * code);
NS_IMETHOD
Equals(nsIPrincipal * other, PRBool * result);
nsCodebasePrincipal(PRInt16 type, const char * codebaseURL);
nsCodebasePrincipal(PRInt16 type, nsIURI * url);
virtual ~nsCodebasePrincipal(void);
protected:
nsIURI * itsURL;
PRInt16 itsType;
private:
void Init(PRInt16 type, nsIURI * uri);
};
#endif // _NS_CODEBASE_PRINCIPAL_H_