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
 
 
| Fields inherited from class java.security.Permission | 
|  | 
 
 
 
 
 
actions
private String actions
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? 