java.io
Class SerializablePermission

java.lang.Object
  |
  +--java.security.Permission
        |
        +--java.security.BasicPermission
              |
              +--java.io.SerializablePermission
All Implemented Interfaces:
Guard, Serializable

public final class SerializablePermission
extends BasicPermission

Untamed:

See Also:
Serialized Form

Field Summary
private  String actions
           
 
Fields inherited from class java.security.BasicPermission
 
Fields inherited from class java.security.Permission
 
Constructor Summary
SerializablePermission(String name)
          Enabled: Creates a new SerializablePermission with the specified name.
SerializablePermission(String name, String actions)
          Enabled: Creates a new SerializablePermission object with the specified name.
 
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
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

actions

private String actions
Constructor Detail

SerializablePermission

public SerializablePermission(String name)
Enabled: Creates a new SerializablePermission with the specified name. The name is the symbolic name of the SerializablePermission, such as "enableSubstitution", etc.

Parameters:
name - the name of the SerializablePermission.

SerializablePermission

public SerializablePermission(String name,
                              String actions)
Enabled: Creates a new SerializablePermission object with the specified name. The name is the symbolic name of the SerializablePermission, and the actions String is currently unused and should be null.

Parameters:
name - the name of the SerializablePermission.
actions - currently unused and must be set to null


comments?