Package com.webmethods.rtl.util.obj
Interface IPortalFileBean
public interface IPortalFileBean
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.commons.fileupload.FileItem
Wraps this as aFileItem
.Gets an InputStreamboolean
getKey()
void
release()
Cleans up this object's member resources, preparing it to be added back into the pool.void
setContentType
(String contentType) void
setFullFileName
(String fullFileName) void
setInsoConvert
(boolean insoConvert) void
void
setOrigFilename
(String origFilename)
-
Method Details
-
getKey
String getKey()- See Also:
-
#m_key
-
setKey
- See Also:
-
#m_key
-
getFullFileName
String getFullFileName()- See Also:
-
#m_fullFileName
-
setFullFileName
- See Also:
-
#m_fullFileName
-
getOrigFilename
String getOrigFilename()- See Also:
-
#m_origFilename
-
setOrigFilename
- See Also:
-
#m_origFilename
-
getContentType
String getContentType()- See Also:
-
#m_contentType
-
setContentType
- See Also:
-
#m_contentType
-
getInsoConvert
boolean getInsoConvert()- See Also:
-
#m_insoConvert
-
setInsoConvert
void setInsoConvert(boolean insoConvert) - See Also:
-
#m_insoConvert
-
getInputStream
Gets an InputStream- Returns:
- an inputStream that you might want to wrap with a buffered stream
- Throws:
IOException
-
getFileItem
org.apache.commons.fileupload.FileItem getFileItem()Wraps this as aFileItem
. -
release
void release()Cleans up this object's member resources, preparing it to be added back into the pool. This method should be called prior to checking this object back into the pool.
-