May 2001
Intermediate to advanced
618 pages
20h 50m
English
Property Permissions
java.util.PropertyPermission
The name of the Java virtual machine property that
you want to access. Property permission
names are specified as
dot-separated names (just as they are in a Java property file); in
addition, the last element can be a wildcard asterisk:
*, a.*,
a.b.*, and so on. Note, however, that no other
element can be a wildcard; *.b.c does not allow
you to access the a.b.c property.
read and write.
// Read standard java properties permission java.util.PropertyPermission "java.*", "read"; // Create properties in the sdo package permission java.util.PropertyPermission "sdo.*", "read,write";
Read now
Unlock full access