May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class java.security.GuardedObject
A guarded object is a container for another object. The contained
object is guarded using an object that implements the
Guard interface; in typical usage, that would be
an instance of a Permission object. The guarded
object stores a serialized version of the object it contains; the
contained object will be deserialized and returned by the
getObject( ) method only if the guarded object
allows access.
public class java.security.GuardedObject
extends java.lang.Object
implements java.io.Serializable {
// Constructors
public GuardedObject(Serializable, Guard);
// Instance Methods
public Object getObject( );
}
Guard
|
Read now
Unlock full access