Class PolicyParser.GrantEntry
java.lang.Object
com.sun.ts.lib.util.sec.security.provider.PolicyParser.GrantEntry
- Enclosing class:
- PolicyParser
Each grant entry in the policy configuration file is represented by a GrantEntry object.
For example, the entry
grant signedBy "Duke" { permission java.io.FilePermission "/tmp", "read,write"; };is represented internally
pe = new PermissionEntry("java.io.FilePermission", "/tmp", "read,write"); ge = new GrantEntry("Duke", null); ge.add(pe);
- Author:
- Roland Schemers version 1.19, 05/21/98
-
Field Summary
FieldsModifier and TypeFieldDescription -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
clone()
boolean
boolean
Enumerate all the permission entries in this GrantEntry.boolean
boolean
void
write
(PrintWriter out)