javaPermission - Java 2 Security (javaPermission)

Configuration of permissions for Java 2 Security.

NameTypeDefaultDescription
idstringA unique configuration ID.
classNamestringThe name of the class implementing the permission being granted. For example, java.io.FilePermission.
codebasestringThe codebase that is being granted the permission.
principalTypestringThe class name that would be matched for the given Principal Name.
principalNamestringThe principal to whom the permission is being granted.
namestringThe target for which the permission applies to. For example, ALL FILES in the case of a java.io.FilePermission.
actionsstringThe actions that the permission grant allows on the target name. For example, read in the case of a java.io.FilePermission.
restrictionbooleanfalseDeclares whether the permission is being restricted versus granted. If restriction is set to "true" then this permission is denied as opposed to being granted.