java.security
public
final
class
java.security.SecurityPermission
SecurityPermission objects guard access to the mechanisms which implement
security. Security permissions have names, but not actions.
Summary
Public Constructors
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Public Constructors
public
SecurityPermission(String name)
Creates an instance of this class with the given name.
Parameters
name
| String the name of the new permission.
|
public
SecurityPermission(String name, String action)
Creates an instance of this class with the given name and action list.
The action list is ignored.
Parameters
name
| String the name of the new permission. |
action
| String ignored.
|