Class WebSphereRuntimePermission

java.lang.Object
java.security.Permission
java.security.BasicPermission
com.ibm.websphere.security.WebSphereRuntimePermission
All Implemented Interfaces:
Serializable, Guard

public final class WebSphereRuntimePermission extends 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. Currently the WebSphereRuntimePermission used to guard access to the following objects:

  • SecurityCallbackHandlerAccessor

Possible target names for WebSphere runtime permissions are:

  • setClientContainerCallback - allow the caller to invoke the
     SecurityCallbackHandlerAccessor.setCallbackHandler method
Since:
1.0
See Also:
  • Constructor Details

    • WebSphereRuntimePermission

      public WebSphereRuntimePermission(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

      public WebSphereRuntimePermission(String target, 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: