com.aoindustries.website.framework
Class InputStreamPage
java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
com.aoindustries.website.framework.ErrorReportingServlet
com.aoindustries.website.framework.WebPage
com.aoindustries.website.framework.InputStreamPage
- All Implemented Interfaces:
- java.io.Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig
- Direct Known Subclasses:
- HTMLInputStreamPage, ProcessPage
public abstract class InputStreamPage
- extends WebPage
Reads everything from an input stream and puts it into a page.
- Author:
- AO Industries, Inc.
- See Also:
- Serialized Form
|
Method Summary |
void |
doGet(com.aoindustries.io.ChainWriter out,
WebSiteRequest req,
javax.servlet.http.HttpServletResponse resp)
By default, GET provides no content. |
abstract java.io.InputStream |
getInputStream()
Gets the stream that the text should be read from. |
void |
printStream(com.aoindustries.io.ChainWriter out,
WebSiteRequest req,
javax.servlet.http.HttpServletResponse resp,
java.io.InputStream in)
|
static void |
printStreamStatic(com.aoindustries.io.ChainWriter out,
java.io.InputStream in)
|
| Methods inherited from class com.aoindustries.website.framework.WebPage |
canAccess, doGet, doPost, doPost, doPostWithSearch, enforceEncryption, equals, equals, generateURLPath, getAdditionalHeaders, getAuthor, getCachedPages, getClassLastModified, getClassLoaderUptime, getContentVAlign, getCopyright, getDescription, getHTMLChainWriter, getHTMLOutputStream, getJavaScriptSrc, getKeywords, getLastModified, getLastModifiedRecursive, getLastModifiedRecursive, getNavImageAlt, getNavImageSuffix, getNavImageURL, getNextPage, getOnloadScript, getPageIndexInParent, getParent, getPreferredContentWidth, getPreviousPage, getRedirectURL, getRootPage, getSearchLastModified, getServletContext, getShortTitle, getTitle, getURLParams, getURLPath, getURLPattern, getWebPage, getWebPage, getWebPage, getWebPage, getWebPageAndChildrenLastModified, getWebPageLayout, getWebPages, getWebSiteRequest, hashCode, includeNavImageAsParent, isHandler, isHandler, loadClass, printLoginForm, printUnauthorizedPage, reportingDoGet, reportingDoPost, reportingGetLastModified, search, showInLocationPath, standardSearch, useEncryption, useNavImage, useSiteMap |
| Methods inherited from class com.aoindustries.website.framework.ErrorReportingServlet |
doGet, doPost, getGetCount, getLastModified, getLastModifiedCount, getLogger, getLogger, getLogger, getLoggerAccessor, getPostCount, getUptime, log, log |
| Methods inherited from class javax.servlet.http.HttpServlet |
doDelete, doHead, doOptions, doPut, doTrace, service, service |
| Methods inherited from class javax.servlet.GenericServlet |
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletInfo, getServletName, init, init |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
InputStreamPage
public InputStreamPage(LoggerAccessor loggerAccessor)
InputStreamPage
public InputStreamPage(WebSiteRequest req)
InputStreamPage
public InputStreamPage(LoggerAccessor loggerAccessor,
java.lang.Object param)
doGet
public void doGet(com.aoindustries.io.ChainWriter out,
WebSiteRequest req,
javax.servlet.http.HttpServletResponse resp)
throws java.io.IOException,
java.sql.SQLException
- Description copied from class:
WebPage
- By default, GET provides no content.
- Overrides:
doGet in class WebPage
- Parameters:
out - the ChainWriter to send output toreq - the current WebSiteRequestresp - the HttpServletResponse for this request, is null when searching
- Throws:
java.io.IOException
java.sql.SQLException
getInputStream
public abstract java.io.InputStream getInputStream()
throws java.io.IOException
- Gets the stream that the text should be read from.
- Throws:
java.io.IOException
printStream
public void printStream(com.aoindustries.io.ChainWriter out,
WebSiteRequest req,
javax.servlet.http.HttpServletResponse resp,
java.io.InputStream in)
throws java.io.IOException,
java.sql.SQLException
- Throws:
java.io.IOException
java.sql.SQLException
printStreamStatic
public static void printStreamStatic(com.aoindustries.io.ChainWriter out,
java.io.InputStream in)
throws java.io.IOException
- Throws:
java.io.IOException