public class MarshalInputStream extends ObjectInputStream implements ObjectStreamContext
ObjectInputStream that implements the
 dynamic class loading semantics of Java(TM) Remote Method
 Invocation (Java RMI) argument and result
 unmarshalling (using ClassLoading).  A
 MarshalInputStream is intended to read data written by
 a corresponding MarshalOutputStream.
 MarshalInputStream implements the input side of the
 dynamic class loading semantics by overriding resolveClass and resolveProxyClass to resolve
 class descriptors in the stream using ClassLoading.loadClass and ClassLoading.loadProxyClass (which, in turn, use RMIClassLoaderSpi.loadClass and RMIClassLoaderSpi.loadProxyClass), optionally with codebase
 annotation strings written by a MarshalOutputStream.
 
By default, a MarshalInputStream ignores all
 codebase annotation strings, instead using a codebase value of
 null when loading classes.  Codebase annotation
 strings will only be used by a MarshalInputStream
 after its useCodebaseAnnotations
 method has been invoked.
 
MarshalInputStream supports optional verification
 that all codebase annotation URLs that are used to load classes
 resolved by the stream provide content integrity (see Security.verifyCodebaseIntegrity).  Whether or not a particular
 MarshalInputStream instance verifies that codebase
 annotation URLs provide content integrity is determined by the
 verifyCodebaseIntegrity constructor argument.  See
 ClassLoading.loadClass and ClassLoading.loadProxyClass for
 details of how codebase integrity verification is performed.
 
MarshalInputStream reads class annotations from its
 own stream; a subclass can override the readAnnotation method to read the class annotations from a
 different location.
 
A MarshalInputStream is not guaranteed to be
 safe for concurrent use by multiple threads.
ObjectInputStream.GetFieldbaseWireHandle, PROTOCOL_VERSION_1, PROTOCOL_VERSION_2, SC_BLOCK_DATA, SC_ENUM, SC_EXTERNALIZABLE, SC_SERIALIZABLE, SC_WRITE_METHOD, STREAM_MAGIC, STREAM_VERSION, SUBCLASS_IMPLEMENTATION_PERMISSION, SUBSTITUTION_PERMISSION, TC_ARRAY, TC_BASE, TC_BLOCKDATA, TC_BLOCKDATALONG, TC_CLASS, TC_CLASSDESC, TC_ENDBLOCKDATA, TC_ENUM, TC_EXCEPTION, TC_LONGSTRING, TC_MAX, TC_NULL, TC_OBJECT, TC_PROXYCLASSDESC, TC_REFERENCE, TC_RESET, TC_STRING| Constructor and Description | 
|---|
MarshalInputStream(InputStream in,
                  ClassLoader defaultLoader,
                  boolean verifyCodebaseIntegrity,
                  ClassLoader verifierLoader,
                  Collection context)
Creates a new  
MarshalInputStream that reads
 marshalled data from the specified underlying
 InputStream. | 
| Modifier and Type | Method and Description | 
|---|---|
Collection | 
getObjectStreamContext()
Returns the collection of context information objects that
 was passed to this stream's constructor. 
 | 
protected String | 
readAnnotation()
Reads and returns a class annotation string value (possibly
  
null) that was written by a corresponding
 MarshalOutputStream implementation. | 
protected Class | 
resolveClass(ObjectStreamClass classDesc)
Resolves the appropriate  
Class object for the stream
 class descriptor classDesc. | 
protected Class | 
resolveProxyClass(String[] interfaceNames)
Resolves the appropriate  
Class object for the proxy
 class described by the interface names
 interfaceNames. | 
void | 
useCodebaseAnnotations()
Enables the use of codebase annotation strings written by the
 corresponding  
MarshalOutputStream. | 
available, close, defaultReadObject, enableResolveObject, read, read, readBoolean, readByte, readChar, readClassDescriptor, readDouble, readFields, readFloat, readFully, readFully, readInt, readLine, readLong, readObject, readObjectOverride, readShort, readStreamHeader, readUnshared, readUnsignedByte, readUnsignedShort, readUTF, registerValidation, resolveObject, skipBytesmark, markSupported, read, reset, skipclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitread, skippublic MarshalInputStream(InputStream in, ClassLoader defaultLoader, boolean verifyCodebaseIntegrity, ClassLoader verifierLoader, Collection context) throws IOException
MarshalInputStream that reads
 marshalled data from the specified underlying
 InputStream.
 This constructor passes in to the superclass
 constructor that has an InputStream parameter.
 
defaultLoader will be passed as the
 defaultLoader argument to ClassLoading.loadClass and ClassLoading.loadProxyClass
 whenever those methods are invoked by resolveClass and resolveProxyClass.
 
If verifyCodebaseIntegrity is
 true, then the created stream will verify that all
 codebase annotation URLs that are used to load classes resolved
 by the stream provide content integrity, and whenever Security.verifyCodebaseIntegrity is invoked to enforce that
 verification, verifierLoader will be passed as the
 loader argument.  See ClassLoading.loadClass and ClassLoading.loadProxyClass for
 details of how codebase integrity verification is performed.
 
context will be used as the return value of the
 created stream's getObjectStreamContext method.
in - the input stream to read marshalled data fromdefaultLoader - the class loader value (possibly
 null) to pass as the defaultLoader
 argument to ClassLoading methodsverifyCodebaseIntegrity - if true, this
 stream will verify that codebase annotation URLs used to load
 classes resolved by this stream provide content integrityverifierLoader - the class loader value (possibly
 null) to pass to
 Security.verifyCodebaseIntegrity, if
 verifyCodebaseIntegrity is truecontext - the collection of context information objects to
 be returned by this stream's getObjectStreamContext methodIOException - if the superclass's constructor throws an
 IOExceptionSecurityException - if the superclass's constructor
 throws a SecurityExceptionNullPointerException - if in or
 context is nullpublic void useCodebaseAnnotations()
MarshalOutputStream.
 If this method has not been invoked on this stream, then the
 resolveClass and resolveProxyClass
 methods ignore the class annotation strings and just use a
 null codebase value when loading classes.  After
 this method has been invoked, then the
 resolveClass and resolveProxyClass
 methods use the class annotation strings as codebase values.
public Collection getObjectStreamContext()
getObjectStreamContext in interface ObjectStreamContextprotected Class resolveClass(ObjectStreamClass classDesc) throws IOException, ClassNotFoundException
Class object for the stream
 class descriptor classDesc.
 MarshalInputStream implements this method as
 follows:
 
This method first invokes this stream's readAnnotation method to read the annotation
 string value (possibly null) for the class
 descriptor.  If readAnnotation throws an
 exception, then this method throws that exception.  Otherwise,
 a codebase value is chosen as follows: if the useCodebaseAnnotations method has been
 invoked on this stream, then the codebase value chosen is the
 value that was returned by readAnnotation;
 otherwise, the codebase value chosen is null.
 
This method then invokes ClassLoading.loadClass with the chosen codebase value as the
 first argument, the name of the class described by
 classDesc as the second argument, and the
 defaultLoader,
 verifyCodebaseIntegrity, and
 verifierLoader values that were passed to this
 stream's constructor as the third, fourth, and fifth arguments.
 If ClassLoading.loadClass throws a
 ClassNotFoundException and the name of the class
 described by classDesc equals the Java
 programming language keyword for a primitive type or
 void, then this method returns the
 Class corresponding to that primitive type or
 void (Integer.TYPE for int,
 Void.TYPE for void, and so forth).
 Otherwise, if ClassLoading.loadClass throws an
 exception, this method throws that exception, and if it returns
 normally, this method returns the Class returned
 by ClassLoading.loadClass.
resolveClass in class ObjectInputStreamclassDesc - the stream class descriptor to resolveIOException - if readAnnotation throws an
 IOException, or if
 ClassLoading.loadClass throws a
 MalformedURLExceptionClassNotFoundException - if readAnnotation
 or ClassLoading.loadClass throws a
 ClassNotFoundExceptionNullPointerException - if classDesc is
 nullprotected Class resolveProxyClass(String[] interfaceNames) throws IOException, ClassNotFoundException
Class object for the proxy
 class described by the interface names
 interfaceNames.
 MarshalInputStream implements this method as
 follows:
 
This method first invokes this stream's readAnnotation method to read the annotation
 string value (possibly null) for the class
 descriptor.  If readAnnotation throws an
 exception, then this method throws that exception.  Otherwise,
 a codebase value is chosen as follows: if the useCodebaseAnnotations method has been
 invoked on this stream, then the codebase value chosen is the
 value that was returned by readAnnotation;
 otherwise, the codebase value chosen is null.
 
This method then invokes ClassLoading.loadProxyClass with the chosen codebase value as
 the first argument, interfaceNames as the second
 argument, and the defaultLoader,
 verifyCodebaseIntegrity, and
 verifierLoader values that were passed to this
 stream's constructor as the third, fourth, and fifth arguments.
 If ClassLoading.loadProxyClass throws an
 exception, then this method throws that exception.  Otherwise,
 this method returns the Class returned by
 ClassLoading.loadProxyClass.
resolveProxyClass in class ObjectInputStreaminterfaceNames - the list of interface names that were
 deserialized in the proxy class descriptorIOException - if readAnnotation throws an
 IOException, or if
 ClassLoading.loadProxyClass throws a
 MalformedURLExceptionClassNotFoundException - if readAnnotation
 or ClassLoading.loadProxyClass throws a
 ClassNotFoundExceptionNullPointerException - if interfaceNames is
 null or if any element of
 interfaceNames is nullprotected String readAnnotation() throws IOException, ClassNotFoundException
null) that was written by a corresponding
 MarshalOutputStream implementation.
 MarshalInputStream implements this method to
 just read the annotation value from this stream using readObject, and if
 readObject returns a non-null value
 that is not a String, an InvalidObjectException is thrown.
 
A subclass can override this method to read the annotation from a different location.
null)IOException - if an I/O exception occurs reading the
 annotationClassNotFoundException - if a
 ClassNotFoundException occurs reading the
 annotation