Skip navigation links

Oracle Multimedia Servlets and JSP Java API Reference
11g Release 1 (11.1)

Part No. B28412-01

D E G I L O P R S


D

DEFAULT_BUFFER_SIZE - Static variable in class oracle.ord.im.OrdHttpResponseHandler
The OrdHttpResponseHandler class uses a default buffer size of 32768 to retrieve LOB data from the database and deliver it to the client.
destroy() - Method in class oracle.ord.im.OrdMultipartFilter
Implements the javax.servlet.Filter interface destroy method that destroys the filter.
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class oracle.ord.im.OrdMultipartFilter
Implements the javax.servlet.Filter interface doFilter method that handles the servlet request with multipart/form-data encoding.

E

enableParameterTranslation(String) - Method in class oracle.ord.im.OrdHttpUploadFormData
Enables the translation of all HTML form parameter names and all text-based HTML form parameter values using the specified character encoding when parsing the body of a multipart/form-data POST request.

G

getContentLength() - Method in class oracle.ord.im.OrdHttpUploadFile
Returns the length of the uploaded media file.
getFileParameter(String) - Method in class oracle.ord.im.OrdHttpUploadFormData
Returns information about an uploaded file identified by parameter name, as an OrdHttpUploadFile object.
getFileParameter(String) - Method in class oracle.ord.im.OrdMultipartWrapper
Gets information about an uploaded file identified by the file's parameter name as an OrdHttpUploadFile object.
getFileParameterNames() - Method in class oracle.ord.im.OrdHttpUploadFormData
Returns an Enumeration of the names of all the input fields of type file in an HTML form, or an empty Enumeration if there are no input fields of type file.
getFileParameterNames() - Method in class oracle.ord.im.OrdMultipartWrapper
Returns an Enumeration of the names of all the input fields of type file in an HTML form.
getFileParameterValues(String) - Method in class oracle.ord.im.OrdHttpUploadFormData
Returns an array of OrdHttpUploadFile objects that represents all files uploaded using the specified parameter name.
getFileParameterValues(String) - Method in class oracle.ord.im.OrdMultipartWrapper
Gets an array of OrdHttpUploadFile objects that represents all the files uploaded using the specified parameter name.
getInputStream() - Method in class oracle.ord.im.OrdHttpUploadFile
Returns an InputStream object that can be used to read uploaded data directly.
getMimeType() - Method in class oracle.ord.im.OrdHttpUploadFile
Returns the MIME type of the media file, as determined by the browser when the file is uploaded.
getOriginalFileName() - Method in class oracle.ord.im.OrdHttpUploadFile
Returns the original file name, as provided by the browser.
getParameter(String) - Method in class oracle.ord.im.OrdHttpUploadFormData
Returns the value of the first query string parameter or text-based form field parameter with the specified name, or null if the parameter does not exist.
getParameter(String) - Method in class oracle.ord.im.OrdMultipartWrapper
Returns the value of the first query string parameter or text-based form field parameter with the specified name, or null if the parameter does not exist.
getParameterMap() - Method in class oracle.ord.im.OrdMultipartWrapper
Returns a java.util.Map of the query string parameters and text-based form field data parameters.
getParameterNames() - Method in class oracle.ord.im.OrdHttpUploadFormData
Returns an Enumeration of all the query string parameter names and all the text-based form field parameter names in the request, or an empty Enumeration if there are no query string parameters and no text-based form field parameters.
getParameterNames() - Method in class oracle.ord.im.OrdMultipartWrapper
Returns an Enumeration of all the query string parameter names and all the text-based form field parameter names in the request, or an empty Enumeration if there are no query string parameters and no text-based form field parameters.
getParameterValues(String) - Method in class oracle.ord.im.OrdHttpUploadFormData
Returns an array of String objects containing the values of all the query string parameters and text-based form field data parameters with the specified parameter name, or null if the parameter does not exist.
getParameterValues(String) - Method in class oracle.ord.im.OrdMultipartWrapper
Returns an array of String objects containing the values of all the query string parameters and text-based form field data parameters with the specified parameter name, or null if the parameter does not exist.
getSimpleFileName() - Method in class oracle.ord.im.OrdHttpUploadFile
Returns the simple file name, (that is, the name of the file and the extension).
getTempFile() - Method in class oracle.ord.im.OrdHttpUploadFile
Exists as an internal method only.

I

init(FilterConfig) - Method in class oracle.ord.im.OrdMultipartFilter
Implements the javax.servlet.Filter interface init method that initializes the filter.
isUploadRequest() - Method in class oracle.ord.im.OrdHttpUploadFormData
Tests if the request was encoded using the multipart/form-data encoding format.

L

loadAudio(OrdAudio) - Method in class oracle.ord.im.OrdHttpUploadFile
Loads the uploaded file into an OrdAudio Java object and sets the properties based on the audio data.
loadAudio(OrdAudio, byte[][], boolean) - Method in class oracle.ord.im.OrdHttpUploadFile
Loads the uploaded file into an OrdAudio Java object and sets the properties using an application-supplied, format plug-in context.
loadBlob(BLOB) - Method in class oracle.ord.im.OrdHttpUploadFile
Loads the uploaded media file into a BLOB.
loadDoc(OrdDoc) - Method in class oracle.ord.im.OrdHttpUploadFile
Loads the uploaded file into an OrdDoc Java object and sets the properties based on the contents of the document.
loadDoc(OrdDoc, byte[][], boolean) - Method in class oracle.ord.im.OrdHttpUploadFile
Loads the uploaded file into an OrdDoc Java object and sets the properties using an application-supplied, format plug-in context.
loadImage(OrdImage) - Method in class oracle.ord.im.OrdHttpUploadFile
Loads the uploaded file into an OrdImage Java object and sets the properties based on the image data.
loadImage(OrdImage, String) - Method in class oracle.ord.im.OrdHttpUploadFile
Loads the uploaded file into an OrdImage Java object and sets the properties according to an application-supplied command string.
loadVideo(OrdVideo) - Method in class oracle.ord.im.OrdHttpUploadFile
Loads the uploaded file into an OrdVideo Java object and sets the properties based on the video data.
loadVideo(OrdVideo, byte[][], boolean) - Method in class oracle.ord.im.OrdHttpUploadFile
Loads the uploaded file into an OrdVideo Java object and sets the properties using an application-supplied, format plug-in context.

O

oracle.ord.im - package oracle.ord.im
 
OrdHttpJspResponseHandler - Class in oracle.ord.im
The OrdHttpJspResponseHandler class facilitates the retrieval of media data from Oracle Database, and its delivery to a browser or other HTTP client from a JSP page.
OrdHttpJspResponseHandler() - Constructor for class oracle.ord.im.OrdHttpJspResponseHandler
Creates an OrdHttpJspResponseHandler object to handle the response to a media retrieval request.
OrdHttpJspResponseHandler(PageContext) - Constructor for class oracle.ord.im.OrdHttpJspResponseHandler
Creates an OrdHttpJspResponseHandler object to handle the response to a media retrieval request, and specifies the PageContext object for the response handler.
OrdHttpResponseException - Exception in oracle.ord.im
The OrdHttpResponseException class extends ServletException to report errors encountered during the retrieval and delivery of multimedia data from a database to an HTTP client.
OrdHttpResponseHandler - Class in oracle.ord.im
The OrdHttpResponseHandler class facilitates the retrieval of media data from Oracle Database, and its delivery to a browser or other HTTP client from a Java servlet.
OrdHttpResponseHandler() - Constructor for class oracle.ord.im.OrdHttpResponseHandler
Creates an OrdHttpResponseHandler object to handle the response to a media retrieval request.
OrdHttpResponseHandler(HttpServletRequest, HttpServletResponse) - Constructor for class oracle.ord.im.OrdHttpResponseHandler
Creates an OrdHttpResponseHandler object to handle the response to a media retrieval request and specifies the HttpServletRequest and HttpServletResponse objects for the response handler.
OrdHttpUploadException - Exception in oracle.ord.im
The OrdHttpUploadException class extends IOException to report errors encountered during the uploading of multimedia data from an HTTP client to a database.
OrdHttpUploadFile - Class in oracle.ord.im
The OrdHttpUploadFile class facilitates the handling of uploaded files by providing an API that applications can call to load media data into Oracle Database.
OrdHttpUploadFormData - Class in oracle.ord.im
The OrdHttpUploadFormData class facilitates the processing of POST requests using the multipart/form-data format.
OrdHttpUploadFormData() - Constructor for class oracle.ord.im.OrdHttpUploadFormData
Creates an OrdHttpUploadFormData object to parse a multipart/form-data request.
OrdHttpUploadFormData(ServletRequest) - Constructor for class oracle.ord.im.OrdHttpUploadFormData
Creates an OrdHttpUploadFormData object to parse a multipart/form-data request.
OrdMultipartFilter - Class in oracle.ord.im
The OrdMultipartFilter class filters form-based, file-upload servlet requests whose contents are encoded in multipart/form-data format.
OrdMultipartFilter() - Constructor for class oracle.ord.im.OrdMultipartFilter
 
OrdMultipartWrapper - Class in oracle.ord.im
The OrdMultipartWrapper class wraps the HttpServletRequest object and provides access to the contents in the HTTP request that are encoded using multipart/form-data encoding.
OrdMultipartWrapper(HttpServletRequest, int, String) - Constructor for class oracle.ord.im.OrdMultipartWrapper
Creates an OrdMultipartWrapper object that wraps the HttpServletRequest object with multipart/form-data content.

P

parseFormData() - Method in class oracle.ord.im.OrdHttpUploadFormData
Parses the body of a POST request encoded using the multipart/form-data encoding.

R

release() - Method in class oracle.ord.im.OrdHttpUploadFile
Releases all resources held by an OrdHttpUploadFile object.
release() - Method in class oracle.ord.im.OrdHttpUploadFormData
Releases all resources held by an OrdHttpUploadFormData object, including temporary files used to hold the contents of uploaded files.
release() - Method in class oracle.ord.im.OrdMultipartWrapper
Releases the resources owned by an OrdMultipartWrapper object.

S

sendAudio(OrdAudio) - Method in class oracle.ord.im.OrdHttpJspResponseHandler
Retrieves an audio clip from an OrdAudio object and delivers it to the browser.
sendAudio(OrdAudio) - Method in class oracle.ord.im.OrdHttpResponseHandler
Retrieves an audio clip from an OrdAudio object and delivers it to the browser.
sendDoc(OrdDoc) - Method in class oracle.ord.im.OrdHttpJspResponseHandler
Retrieves media data from an OrdDoc object and delivers it to the browser.
sendDoc(OrdDoc) - Method in class oracle.ord.im.OrdHttpResponseHandler
Retrieves media data from an OrdDoc object and delivers it to the browser.
sendImage(OrdImage) - Method in class oracle.ord.im.OrdHttpJspResponseHandler
Retrieves an image from an OrdImage object and delivers it to the browser.
sendImage(OrdImage) - Method in class oracle.ord.im.OrdHttpResponseHandler
Retrieves an image from an OrdImage object and delivers it to the browser.
sendResponse(String, int, BLOB, Timestamp) - Method in class oracle.ord.im.OrdHttpJspResponseHandler
Builds the HTTP response header, then retrieves the contents of the BLOB from the database and delivers it to the browser.
sendResponse(String, int, BFILE, Timestamp) - Method in class oracle.ord.im.OrdHttpJspResponseHandler
Builds the HTTP response header, then retrieves the contents of the BFILE from the database and delivers it to the browser.
sendResponse(String, int, InputStream, Timestamp) - Method in class oracle.ord.im.OrdHttpJspResponseHandler
Builds the HTTP response header, then retrieves the contents of the InputStream object and delivers it to the browser.
sendResponse() - Method in class oracle.ord.im.OrdHttpJspResponseHandler
Builds an HTTP response header, then retrieves the contents of the media data from the database and delivers it to the browser.
sendResponse(String, int, BLOB, Timestamp) - Method in class oracle.ord.im.OrdHttpResponseHandler
Builds the HTTP response header, then retrieves the contents of the BLOB from the database and delivers it to the browser.
sendResponse(String, int, BFILE, Timestamp) - Method in class oracle.ord.im.OrdHttpResponseHandler
Builds the HTTP response header, then retrieves the contents of the BFILE from the database and delivers it to the browser.
sendResponse(String, int, InputStream, Timestamp) - Method in class oracle.ord.im.OrdHttpResponseHandler
Builds the HTTP response header, then retrieves the contents of the InputStream object and delivers it to the browser.
sendResponse() - Method in class oracle.ord.im.OrdHttpResponseHandler
Retrieves a media object from one of the Oracle Multimedia objects (OrdImage, OrdAudio, OrdVideo, or OrdDoc) and delivers it to the browser.
sendResponseBody(int, BLOB) - Method in class oracle.ord.im.OrdHttpResponseHandler
Retrieves the content of a BLOB from the database and delivers it as the response body to the browser.
sendResponseBody(int, BFILE) - Method in class oracle.ord.im.OrdHttpResponseHandler
Retrieves the content of a BFILE from the database and delivers it as the response body to the browser.
sendResponseBody(int, InputStream) - Method in class oracle.ord.im.OrdHttpResponseHandler
Retrieves the content of the InputStream object and delivers it as the response body to the browser.
sendVideo(OrdVideo) - Method in class oracle.ord.im.OrdHttpJspResponseHandler
Retrieves a video clip from an OrdVideo object and delivers it to browser.
sendVideo(OrdVideo) - Method in class oracle.ord.im.OrdHttpResponseHandler
Retrieves a video clip from an OrdVideo object and delivers it to the browser.
setBufferSize(int) - Method in class oracle.ord.im.OrdHttpResponseHandler
Sets the buffer size for LOB read and HTTP response write operations.
setEncodeHtml(boolean) - Method in class oracle.ord.im.OrdHttpResponseHandler
Enables the encoding of special characters (! " % & ' ( ) ; < >) from the response output stream with HTML numeric code.
setHeader(String, String) - Method in class oracle.ord.im.OrdHttpResponseHandler
Sets the HTTP response header with the String value.
setHeader(String, long) - Method in class oracle.ord.im.OrdHttpResponseHandler
Sets the HTTP response header with the date value.
setHeader(String, int) - Method in class oracle.ord.im.OrdHttpResponseHandler
Sets the HTTP response header with the integer (int) value.
setMaxMemory(int, String) - Method in class oracle.ord.im.OrdHttpUploadFormData
Specifies the maximum amount of memory that the contents of uploaded files can consume before the contents are stored in a temporary directory.
setMedia(OrdImage) - Method in class oracle.ord.im.OrdHttpResponseHandler
Sets the OrdImage object as the media object to be delivered.
setMedia(OrdAudio) - Method in class oracle.ord.im.OrdHttpResponseHandler
Sets the OrdAudio object as the media object to be delivered.
setMedia(OrdVideo) - Method in class oracle.ord.im.OrdHttpResponseHandler
Sets the OrdVideo object as the media object to be delivered.
setMedia(OrdDoc) - Method in class oracle.ord.im.OrdHttpResponseHandler
Sets the OrdDoc object as the media object to be delivered.
setPageContext(PageContext) - Method in class oracle.ord.im.OrdHttpJspResponseHandler
Specifies the PageContext object for this response handler.
setServletRequest(HttpServletRequest) - Method in class oracle.ord.im.OrdHttpResponseHandler
Specifies the HttpServletRequest object for this response handler.
setServletRequest(ServletRequest) - Method in class oracle.ord.im.OrdHttpUploadFormData
Specifies the ServletRequest object for the request.
setServletResponse(HttpServletResponse) - Method in class oracle.ord.im.OrdHttpResponseHandler
Specifies the HttpServletResponse object for this response handler.

D E G I L O P R S

Oracle Multimedia Servlets and JSP Java API Reference
11g Release 1 (11.1)

Part No. B28412-01


Copyright © 1999, 2007, Oracle. All rights reserved.