com.ibm.websphere.security

Class WebSphereRuntimePermission

  1. java.lang.Object
  2. extended byjava.security.Permission
  3. extended byjava.security.BasicPermission
  4. extended bycom.ibm.websphere.security.WebSphereRuntimePermission
All implemented interfaces:
java.io.Serializable, java.security.Guard

  1. public final class WebSphereRuntimePermission
  2. extends java.security.BasicPermission

This class is for generic Websphere runtime permissions. A WebSphereRuntimePermission contains a name (also referred to as a "target name") but no action list, either the permission is granted or not.

The target name is the name of a security configuration parameter (see follows). Currently the WebSphereRuntimePermission used to guard access to the following objects:

Possible target names for WebSphere runtime permissions are:

Since:
1.0
See Also:
Serialized Form

Constructor Summary

Constructor and Description
WebSphereRuntimePermission(java.lang.String target)
Creates a new WebSphereRuntimePermission with the specified name.
WebSphereRuntimePermission(java.lang.String target,java.lang.String actions)
Creates a new WebSphereRuntimePermission with the specified name.

Method Summary

Methods inherited from class java.security.BasicPermission
equals, getActions, hashCode, implies, newPermissionCollection
Methods inherited from class java.security.Permission
checkGuard, getName, toString
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

Constructor Detail

WebSphereRuntimePermission

  1. public WebSphereRuntimePermission( java.lang.String target)

Creates a new WebSphereRuntimePermission with the specified name. The name is the symbolic name of the WebSphereRuntimePermission.

Parameters:
target - The name of the WebSphereRuntimePermission.

WebSphereRuntimePermission

  1. public WebSphereRuntimePermission( java.lang.String target,
  2. java.lang.String actions)

Creates a new WebSphereRuntimePermission with the specified name. The name is the symbolic name of the WebSphereRuntimePermission, and the actions String is currently unused and should be null. This constuctor exists for use by Policy object to instantiate new Permission objects.

Parameters:
target - The name of the WebSphereRuntimePermission.
actions - Should be null.
See Also:
Policy