This
class
is a java.security.Permission that governs the use
of security-sensitive logging methods. The single defined name (or
target) for LoggingPermission is
"control" which represents
permission to invoke various logging control methods such as
Logger.setLevel( ) and
LogManager.readConfiguration( ). The methods in
this package that throw SecurityException all
require a LoggingPermission named
"control" in order to run.
Application programmers never need to use this class. System
adminstrators configuring security policies may need to be familiar
with it.

public final class LoggingPermission extends java.security.BasicPermission {
// Public Constructors
public LoggingPermission(String name, String actions) throws IllegalArgumentException;
}