Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Class java.io.SerializablePermission

java.lang.Object
    |
    +----java.security.Permission
            |
            +----java.security.BasicPermission
                    |
                    +----java.io.SerializablePermission

public final class SerializablePermission
extends BasicPermission
This class is for Serializable permissions. As with all BasicPermission subclasses, a SerializablePermission contains a name but no actions list; you either have the named permission or you don't.

The name is the name of the Serializable permission ("enableSubstitution")

See Also:
BasicPermission, Permission, Permissions, PermissionCollection, SecurityManager

Constructor Summary
 SerializablePermission(String name)
Creates a new SerializablePermission with the specified name.
 SerializablePermission(String name, String actions)
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, equals, getActions, getName, hashCode, implies, newPermissionCollection, toString
 
Methods inherited from class java.lang.Object
 clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SerializablePermission

public SerializablePermission(String name)
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)
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. This constructor exists for use by the Policy object to instantiate new Permission objects.
Parameters:
name - the name of the SerializablePermission.

Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Submit a bug or feature
Submit comments/suggestions about new javadoc look.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.