java.io
public
final
class
java.io.SerializablePermission
SerializablePermission objects represent permission to access unsafe
serialization operations. The name of the permission should be one of:
- enableSubclassImplementation
- Subclasses can override serialization behavior
- enableSubstitution
- Object substitution can be enabled
Summary
Public Constructors
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Public Constructors
public
SerializablePermission(String permissionName)
Creates an instance of this class with the given name.
Parameters
permissionName
| the name of the new permission.
|
public
SerializablePermission(String name, String actions)
Creates an instance of this class with the given name and action list.
The action list is ignored.
Parameters
name
| the name of the new permission. |
actions
| ignored.
|