com.ibm.portal.resolver.streams
Interface FormDataStream

All Superinterfaces:
java.nio.channels.Channel, java.io.Closeable, MultipartStream
All Known Implementing Classes:
FormDataInputStream

public interface FormDataStream
extends MultipartStream, java.nio.channels.Channel, java.io.Closeable

Common functionality across the FormDataInputStream and the com.ibm.portal.resolver.streams.FormDataOutputStream

Since:
7.0.0.1

Nested Class Summary
 
Nested classes/interfaces inherited from interface com.ibm.portal.resolver.streams.MultipartStream
MultipartStream.Entry
 
Field Summary
static java.lang.String CONTENT_TYPE_FORM_DATA
          mime type constants
static java.lang.String KEY_CHARSET
          The special key of a form-upload parameter that the browsers set to the correct characterset
static java.lang.String KEY_CSRF_TOKEN
          The special key of a form-upload parameter that can be used to validate a form upload against CSRF attacks
static java.lang.String VALUE_FORM_DATA
          identification of a content disposition that identifies a form field
 
Fields inherited from interface com.ibm.portal.resolver.streams.MultipartStream
CONTENT_TYPE_MULTIPART, KEY_CONTENT_DISPOSITION, KEY_FILENAME, KEY_MIME_BOUNDARY, KEY_NAME, VALUE_MULTIPART
 
Method Summary
 
Methods inherited from interface com.ibm.portal.resolver.streams.MultipartStream
closeEntry
 
Methods inherited from interface java.nio.channels.Channel
close, isOpen
 

Field Detail

CONTENT_TYPE_FORM_DATA

static final java.lang.String CONTENT_TYPE_FORM_DATA
mime type constants

See Also:
Constant Field Values

KEY_CHARSET

static final java.lang.String KEY_CHARSET
The special key of a form-upload parameter that the browsers set to the correct characterset

See Also:
Constant Field Values

KEY_CSRF_TOKEN

static final java.lang.String KEY_CSRF_TOKEN
The special key of a form-upload parameter that can be used to validate a form upload against CSRF attacks

Since:
8.0.0.1
See Also:
Constant Field Values

VALUE_FORM_DATA

static final java.lang.String VALUE_FORM_DATA
identification of a content disposition that identifies a form field

See Also:
Constant Field Values