Class DefaultBufferedStreamContent
java.lang.Object
org.eclnt.jsfserver.bufferedcontent.DefaultBufferedStreamContent
- All Implemented Interfaces:
Serializable
,IBufferedStreamContent
,ICCServerConstants
public abstract class DefaultBufferedStreamContent
extends Object
implements IBufferedStreamContent, ICCServerConstants
Default implementation of IBufferedContent interface. Should be used
for all implementations. This class will be updated in case the interface
is extended.
- See Also:
-
Field Summary
Fields inherited from interface org.eclnt.jsfserver.util.ICCServerConstants
CLIENTDEVICETYPE_DESKTOP, CLIENTDEVICETYPE_MOBILE, CLIENTJAVATYPE_FX, CLIENTJAVATYPE_SWING, CLIENTTYPE_APPLET, CLIENTTYPE_APPLICATION, CLIENTTYPE_BROWSER, CLIENTTYPE_RISC, CLIENTTYPE_UI5, CLIENTTYPE_WEBSTART, EXPLICIT_EMPTY, EXPLICIT_NULL, FOCUSSEQUENCE_FIX_PREFIX, HEADER_ATTRIBUTE_CLIENT, HEADER_ATTRIBUTE_CLIENTJAVATYPE, HEADER_ATTRIBUTE_COOKIESENABLED, HEADER_ATTRIBUTE_COUNTRY, HEADER_ATTRIBUTE_DEVICESCREENHEIGHT, HEADER_ATTRIBUTE_DEVICESCREENWIDTH, HEADER_ATTRIBUTE_DEVICETYPE, HEADER_ATTRIBUTE_LANGUAGE, HEADER_ATTRIBUTE_MEDIADEVICES, HEADER_ATTRIBUTE_ORIGINALURL, HEADER_ATTRIBUTE_PERFORMANCEDATA, HEADER_ATTRIBUTE_REQUESTID, HEADER_ATTRIBUTE_TIMEZONEOFFSET, HEADER_ATTRIBUTE_USERAGENT, HEADER_ATTRIBUTE_XFRAMEOPTIONS, HEADER_RESPONSE_ATTRIBUTE_HTTPSESSIONID, HEADER_RESPONSE_ATTRIBUTE_HTTPSESSIONREFERENCEURL, HEADER_RESPONSE_ATTRIBUTE_HTTPSESSIONTRACKINGMODE, HEADER_RESPONSE_ATTRIBUTE_OVERRIDE, HEADER_RESPONSE_ATTRIBUTE_RELOAD, HEADER_RESPONSE_ATTRIBUTE_STYLE, INPUTMASK_VALUEMODE_WITHMASK, INPUTMASK_VALUEMODE_WITHOUTMASK, LAYOUTEXTENSION_JSP, LAYOUTEXTENSION_XML, LITERAL_LINK_PREFIX, LITERAL_TEMP_PREFIX, QP_CCSTYLE, QP_KEEPDIALOGSESSION, QP_SUBPAGEID, SECURITY_ROLE_CCADMIN, SESSION_TRACKING_COOKIE, SESSION_TRACKING_URL, SIZE_UNDEFINED, TEXTPANE_CONTENTTYPE_HTML, TEXTPANE_CONTENTTYPE_PLAIN
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
When overriding this method always call super() in your implementation!void
When overriding this method always call super() in your implementation!long
Optional: return length of content in number of bytes.If the access to the buffered content is associated with a client file download, then the name of the client file may be available via this method.When the buffered content is accessed then you may be interested in the URL by which the buffered content is called. - This parameter is only valid when the buffered content is actually requested from the client side.When the buffered content is accessed then you may be interested in the URL by which the buffered content is called. - This parameter is only valid when the buffered content is actually requested from the client side.getId()
getURL()
The URL that can be passed back to client side for accessing the buffered content.Deprecated.void
passClientFileName
(String clientFileName) Internal usage.void
passCurrentRequestQueryString
(String queryString) Internal usage. - The request query string of the current request, accessing the buffered content is passed.void
Internal usage. - The request URL of the current request, accessing the buffered content is passed.void
preProcessResponse
(javax.servlet.http.HttpServletResponse response) This method is called before building the content: you still may e.g. set special http header parameters for the responsevoid
setExtension
(String value) You may pass an optional extension (e.g.void
setFileName
(String value) You may pass an optional file name (e.g.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclnt.jsfserver.bufferedcontent.IBufferedStreamContent
getContentType, writeStream
-
Constructor Details
-
DefaultBufferedStreamContent
public DefaultBufferedStreamContent()
-
-
Method Details
-
getContentLength
public long getContentLength()Description copied from interface:IBufferedStreamContent
Optional: return length of content in number of bytes. If you do not know the length of the content then just return -1.- Specified by:
getContentLength
in interfaceIBufferedStreamContent
-
setExtension
You may pass an optional extension (e.g. "xls", "txt", "pdf", "html", ...). This extension is appended to the URL. If the URL is sent to the browser then the extension helps the browser to start the right application that is associated with the content.
PLEASE CHECK: when using the extension then the servlet mapping of the BufferedContentServlet needs to be up to date - please check your web.xml file against the template (web.xml_template). -
getExtension
-
getId
- Specified by:
getId
in interfaceIBufferedStreamContent
-
setFileName
You may pass an optional file name (e.g. "harry.xls", "jo.txt", ...). The URL that is internally built up will end with this file name, so that it gets automatically proposed when doing direct downloads via a web browser.
The purpose for adding a file name is to pass a file name into the URL so that browsers propose the file name when e.g. downloading data from this URL.
If setting an explicit file name, then this definition will override the extension-definition that you may do withsetExtension(String)
.
PLEASE CHECK: when using the extension then the servlet mapping of the BufferedContentServlet needs to be up to date - please check your web.xml file against the template (web.xml_template). -
getFileName
-
getURL
The URL that can be passed back to client side for accessing the buffered content. The URL contains the session id. The URL is a relative URL that can be passed to all Swing-based components (e.g. FILEDOWNLOADLINK) in any scenario.
When using CaptainCasa in embedded usage mode (UI is running with stand alone Tomcat within one virutal machine) and passing the URL to the BROWSER component then there will be problems. Use the function getURLForBrowserUsage() instead.- Specified by:
getURL
in interfaceIBufferedStreamContent
-
getURLForBROWSERUsage
Deprecated.Depreacted - usrgetURL()
. The embedded mode ist not supported with the RISC client.
Passes back a "normal URL" when running in "normal scenarios". When using CaptainCasa Enterprise Client in embedded usage mode (Tomcat running directly inside client) then the URL passed back is a file:///-URL. In this case the content is directly resolved within this method and written into a temporary location (work directory).- Specified by:
getURLForBROWSERUsage
in interfaceIBufferedStreamContent
-
passClientFileName
Internal usage.- Specified by:
passClientFileName
in interfaceIBufferedStreamContent
-
passCurrentRequestQueryString
Internal usage. - The request query string of the current request, accessing the buffered content is passed.- Specified by:
passCurrentRequestQueryString
in interfaceIBufferedStreamContent
-
getCurrentRequestQueryString
When the buffered content is accessed then you may be interested in the URL by which the buffered content is called. - This parameter is only valid when the buffered content is actually requested from the client side. -
passCurrentRequestURL
Internal usage. - The request URL of the current request, accessing the buffered content is passed.- Specified by:
passCurrentRequestURL
in interfaceIBufferedStreamContent
-
getCurrentClientFileName
If the access to the buffered content is associated with a client file download, then the name of the client file may be available via this method. ("may be"...: with the Swing and FX client components the file name is passed, with the HTML upload components the file name is NOT passed. -
getCurrentRequestURL
When the buffered content is accessed then you may be interested in the URL by which the buffered content is called. - This parameter is only valid when the buffered content is actually requested from the client side. -
beginGetting
public void beginGetting()When overriding this method always call super() in your implementation!- Specified by:
beginGetting
in interfaceIBufferedStreamContent
-
endGetting
public void endGetting()When overriding this method always call super() in your implementation!- Specified by:
endGetting
in interfaceIBufferedStreamContent
-
preProcessResponse
public void preProcessResponse(javax.servlet.http.HttpServletResponse response) This method is called before building the content: you still may e.g. set special http header parameters for the response- Specified by:
preProcessResponse
in interfaceIBufferedStreamContent
-