Uses of Interface
org.eclipse.jetty.http.HttpContent
-
Packages that use HttpContent Package Description org.eclipse.jetty.http Jetty Http : Tools for Http processingorg.eclipse.jetty.server Jetty Server : Core Server APIorg.eclipse.jetty.server.resource -
-
Uses of HttpContent in org.eclipse.jetty.http
Classes in org.eclipse.jetty.http that implement HttpContent Modifier and Type Class Description class
PrecompressedHttpContent
class
ResourceHttpContent
HttpContent created from aResource
.Methods in org.eclipse.jetty.http that return HttpContent Modifier and Type Method Description HttpContent
HttpContent.ContentFactory. getContent(java.lang.String path, int maxBuffer)
Methods in org.eclipse.jetty.http that return types with arguments of type HttpContent Modifier and Type Method Description java.util.Map<CompressedContentFormat,? extends HttpContent>
HttpContent. getPrecompressedContents()
java.util.Map<CompressedContentFormat,HttpContent>
PrecompressedHttpContent. getPrecompressedContents()
java.util.Map<CompressedContentFormat,HttpContent>
ResourceHttpContent. getPrecompressedContents()
Constructors in org.eclipse.jetty.http with parameters of type HttpContent Constructor Description PrecompressedHttpContent(HttpContent content, HttpContent precompressedContent, CompressedContentFormat format)
Constructor parameters in org.eclipse.jetty.http with type arguments of type HttpContent Constructor Description ResourceHttpContent(Resource resource, java.lang.String contentType, int maxBuffer, java.util.Map<CompressedContentFormat,HttpContent> precompressedContents)
-
Uses of HttpContent in org.eclipse.jetty.server
Classes in org.eclipse.jetty.server that implement HttpContent Modifier and Type Class Description class
CachedContentFactory.CachedHttpContent
MetaData associated with a context Resource.class
CachedContentFactory.CachedPrecompressedHttpContent
Methods in org.eclipse.jetty.server that return HttpContent Modifier and Type Method Description HttpContent
CachedContentFactory. getContent(java.lang.String pathInContext, int maxBufferSize)
Returns an entry from the cache, or creates a new one.HttpContent
ResourceContentFactory. getContent(java.lang.String pathInContext, int maxBufferSize)
HttpContent
CachedContentFactory. lookup(java.lang.String pathInContext)
Deprecated.Methods in org.eclipse.jetty.server that return types with arguments of type HttpContent Modifier and Type Method Description java.util.Map<CompressedContentFormat,? extends HttpContent>
CachedContentFactory.CachedHttpContent. getPrecompressedContents()
Methods in org.eclipse.jetty.server with parameters of type HttpContent Modifier and Type Method Description protected boolean
ResourceService. passConditionalHeaders(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, HttpContent content)
protected void
ResourceService. putHeaders(javax.servlet.http.HttpServletResponse response, HttpContent content, long contentLength)
static void
Response. putHeaders(javax.servlet.http.HttpServletResponse response, HttpContent content, long contentLength, boolean etag)
void
Response. putHeaders(HttpContent content, long contentLength, boolean etag)
void
HttpOutput. sendContent(HttpContent content)
Blocking send of HTTP content.void
HttpOutput. sendContent(HttpContent httpContent, Callback callback)
Asynchronous send of HTTP content.protected boolean
ResourceService. sendData(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, boolean include, HttpContent content, java.util.Enumeration<java.lang.String> reqRanges)
protected void
ResourceService. sendWelcome(HttpContent content, java.lang.String pathInContext, boolean endsWithSlash, boolean included, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
-
Uses of HttpContent in org.eclipse.jetty.server.resource
Methods in org.eclipse.jetty.server.resource with parameters of type HttpContent Modifier and Type Method Description static RangeWriter
HttpContentRangeWriter. newRangeWriter(HttpContent content)
Obtain a new RangeWriter for the supplied HttpContent.
-