May 1998
Intermediate to advanced
469 pages
14h 57m
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 guard 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