|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
This class describes the support needed to implement security.
Three main pieces of functionality are required to implement security for JavaScript. First, it must be possible to define classes with an associated security context. (This security context may be any object that has meaning to an embedding; for a client-side JavaScript embedding this would typically be an origin URL and/or a digital certificate.) Next it must be possible to get the current class context so that the implementation can determine securely which class is requesting a privileged action. And finally, it must be possible to map a class back into a security context so that additional classes may be defined with that security context.
These three pieces of functionality are encapsulated in the SecuritySupport class.
Context
,
ClassLoader
Method Summary | |
java.lang.Class |
defineClass(java.lang.String name,
byte[] data,
java.lang.Object securityDomain)
Define and load a Java class. |
java.lang.Class[] |
getClassContext()
Get the current class Context. |
java.lang.Object |
getSecurityDomain(java.lang.Class cl)
Return the security context associated with the given class. |
boolean |
visibleToScripts(java.lang.String fullClassName)
Return true iff the Java class with the given name should be exposed to scripts. |
Method Detail |
public java.lang.Class defineClass(java.lang.String name, byte[] data, java.lang.Object securityDomain)
In embeddings that care about security, the securityDomain must be associated with the defined class such that a call to getsecurityDomain with that class will return this security context.
name
- the name of the classdata
- the bytecode of the classsecurityDomain
- some object specifying the security
context of the code that is defining this class.
Embeddings that don't care about security may allow
null here. This value propagated from the values passed
into methods of Context that evaluate scripts.ClassLoader.defineClass(java.lang.String, byte[], int, int)
public java.lang.Class[] getClassContext()
This functionality is supplied by SecurityManager.getClassContext, but only one SecurityManager may be instantiated in a single JVM at any one time. So implementations that care about security must provide access to this functionality through this interface.
Note that the 0th entry of the returned array should be the class of the caller of this method. So if this method is implemented by calling SecurityManager.getClassContext, this method must allocate a new, shorter array to return.
public java.lang.Object getSecurityDomain(java.lang.Class cl)
If cl
is a class defined through a call to
SecuritySupport.defineClass, then return the security
context from that call. Otherwise return null.
cl
- a class potentially defined by defineClasspublic boolean visibleToScripts(java.lang.String fullClassName)
An embedding may filter which Java classes are exposed through LiveConnect to JavaScript scripts.
fullClassName
- the full name of the class (including the package
name, with '.' as a delimiter). For example the
standard string class is "java.lang.String"
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |