org.apache.naming
Class JndiPermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
org.apache.naming.JndiPermission
- All Implemented Interfaces:
- java.security.Guard, java.io.Serializable
- public final class JndiPermission
- extends java.security.BasicPermission
Java SecurityManager Permission class for JNDI name based file resources
The JndiPermission extends the BasicPermission.
The permission name is a full or partial jndi resource name.
An * can be used at the end of the name to match all named
resources that start with name. There are no actions.
Example that grants permission to read all JNDI file based resources:
permission org.apache.naming.JndiPermission "*";
- Version:
- $Revision: 1.3 $ $Date: 2004/02/27 14:58:53 $
- Author:
- Glenn Nielsen
- See Also:
- Serialized Form
Constructor Summary |
JndiPermission(java.lang.String name)
Creates a new JndiPermission with no actions |
JndiPermission(java.lang.String name,
java.lang.String actions)
Creates a new JndiPermission with actions |
Methods inherited from class java.security.BasicPermission |
equals, getActions, hashCode, implies, newPermissionCollection |
Methods inherited from class java.security.Permission |
checkGuard, getName, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
JndiPermission
public JndiPermission(java.lang.String name)
- Creates a new JndiPermission with no actions
JndiPermission
public JndiPermission(java.lang.String name,
java.lang.String actions)
- Creates a new JndiPermission with actions
Copyright © 2000-2003 Apache Software Foundation. All Rights Reserved.