com.infoengine.object
Class ServletMultipartInputStream

java.lang.Object
  extended byjava.io.InputStream
      extended bycom.infoengine.object.IeInputStream
          extended bycom.infoengine.object.IeMultipartInputStream
              extended bycom.infoengine.object.ServletMultipartInputStream

Deprecated. Use IeMultipartInputStream.

public class ServletMultipartInputStream
extends IeMultipartInputStream

ServletMultipartInputStream pre 7.0 contained much the same code that could be found in IeMultipartInputStream. Any functionality differences between the two have been merged to IeMultipartInputStream IeMultipartInputStream when created with a ServletRequest automatically reads POSTed form data from the stream. Form data can be accessed via the getParameterNames and getParameterValues methods. Client's no longer need to process the form data manually. For backward compatibility with 5.x JSPs that make use of com.infoengine.jsp.InfoEngine's sendCollection method, the getXGroups method has been added to IeMultipartInputStream to retrieve Info*Engine groups that were shipped in this manner.


Field Summary
 
Fields inherited from class com.infoengine.object.IeMultipartInputStream
boundary, BOUNDARY_PARAM, contentType, DEFAULT_BOUNDARY, DEFAULT_EOF, DEFAULT_EOL, eofRead, MULTIPART, MULTIPART_FORM_DATA, pushedBack, requestContentType
 
Fields inherited from class com.infoengine.object.IeInputStream
inputBuffer, inputBufferCursor, inputBufferLimit, inputStream
 
Fields inherited from class java.io.InputStream
 
Constructor Summary
ServletMultipartInputStream(javax.servlet.ServletRequest request)
          Deprecated.  
 
Methods inherited from class com.infoengine.object.IeMultipartInputStream
eofRead, getBoundary, getContentHeader, getContentLength, getContentType, getParameter, getParameterNames, getParameterValues, getRequestContentType, getXGroups, pushBackCalled, pushBackHeader, readBlob, readBlob, readBlobInfo, readBoundary, readHeader, readLine, readLine, readRequest, readText, readText, readVdb, streamBlobs
 
Methods inherited from class com.infoengine.object.IeInputStream
available, close, getInputStream, mark, markSupported, read, read, read, readLine, readLine, reset, setInputStream, skip
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ServletMultipartInputStream

public ServletMultipartInputStream(javax.servlet.ServletRequest request)
                            throws IOException
Deprecated.