Uses of Class
org.eclipse.jetty.http.HttpField
-
Packages that use HttpField Package Description org.eclipse.jetty.client Jetty Client : Implementation and Core Classes This package provides APIs, utility classes and an implementation of an asynchronous HTTP client.org.eclipse.jetty.client.api Jetty Client : API Classesorg.eclipse.jetty.client.http org.eclipse.jetty.fcgi.client.http org.eclipse.jetty.fcgi.parser org.eclipse.jetty.fcgi.server org.eclipse.jetty.http Jetty Http : Tools for Http processingorg.eclipse.jetty.http2.hpack org.eclipse.jetty.server Jetty Server : Core Server APIorg.eclipse.jetty.server.handler.gzip Jetty GZIP Handler -
-
Uses of HttpField in org.eclipse.jetty.client
Methods in org.eclipse.jetty.client that return HttpField Modifier and Type Method Description protected HttpField
HttpClient. getAcceptEncodingField()
HttpField
HttpDestination. getHostField()
HttpField
HttpClient. getUserAgentField()
Methods in org.eclipse.jetty.client with parameters of type HttpField Modifier and Type Method Description boolean
ResponseNotifier. notifyHeader(java.util.List<Response.ResponseListener> listeners, Response response, HttpField field)
boolean
RedirectProtocolHandler. onHeader(Response response, HttpField field)
protected boolean
HttpReceiver. responseHeader(HttpExchange exchange, HttpField field)
Method to be invoked when a response HTTP header is available.void
HttpClient. setUserAgentField(HttpField agent)
protected void
HttpReceiver. storeCookie(java.net.URI uri, HttpField field)
HttpResponse
HttpResponse. trailer(HttpField trailer)
-
Uses of HttpField in org.eclipse.jetty.client.api
Methods in org.eclipse.jetty.client.api with parameters of type HttpField Modifier and Type Method Description boolean
Response.HeaderListener. onHeader(Response response, HttpField field)
Callback method invoked when a response header has been received and parsed, returning whether the header should be processed or not.default boolean
Response.Listener. onHeader(Response response, HttpField field)
-
Uses of HttpField in org.eclipse.jetty.client.http
Methods in org.eclipse.jetty.client.http with parameters of type HttpField Modifier and Type Method Description void
HttpReceiverOverHTTP. parsedHeader(HttpField field)
void
HttpReceiverOverHTTP. parsedTrailer(HttpField trailer)
-
Uses of HttpField in org.eclipse.jetty.fcgi.client.http
Methods in org.eclipse.jetty.fcgi.client.http with parameters of type HttpField Modifier and Type Method Description protected boolean
HttpChannelOverFCGI. responseHeader(HttpField field)
protected boolean
HttpReceiverOverFCGI. responseHeader(HttpExchange exchange, HttpField field)
-
Uses of HttpField in org.eclipse.jetty.fcgi.parser
Methods in org.eclipse.jetty.fcgi.parser with parameters of type HttpField Modifier and Type Method Description void
Parser.Listener.Adapter. onHeader(int request, HttpField field)
void
Parser.Listener. onHeader(int request, HttpField field)
-
Uses of HttpField in org.eclipse.jetty.fcgi.server
Methods in org.eclipse.jetty.fcgi.server with parameters of type HttpField Modifier and Type Method Description protected void
HttpChannelOverFCGI. header(HttpField field)
-
Uses of HttpField in org.eclipse.jetty.http
Subclasses of HttpField in org.eclipse.jetty.http Modifier and Type Class Description class
HostPortHttpField
An HttpField holding a preparsed Host and port numberstatic class
HttpCookie.SetCookieHttpField
static class
HttpField.IntValueHttpField
static class
HttpField.LongValueHttpField
class
PreEncodedHttpField
Pre encoded HttpField.Fields in org.eclipse.jetty.http with type parameters of type HttpField Modifier and Type Field Description static Trie<HttpField>
HttpParser. CACHE
Cache of commonHttpField
s including: Common static combinations such as: Connection: close Accept-Encoding: gzip Content-Length: 0 Combinations of Content-Type header for common mime types by common charsets Most common headers with null values so that a lookup will at least determine the header name even if the name:value combination is not cachedMethods in org.eclipse.jetty.http that return HttpField Modifier and Type Method Description HttpField
CompressedContentFormat. getContentEncoding()
HttpField
HttpContent. getContentEncoding()
HttpField
PrecompressedHttpContent. getContentEncoding()
HttpField
ResourceHttpContent. getContentEncoding()
HttpField
HttpContent. getContentLength()
HttpField
PrecompressedHttpContent. getContentLength()
HttpField
ResourceHttpContent. getContentLength()
HttpField
HttpContent. getContentType()
HttpField
PrecompressedHttpContent. getContentType()
HttpField
ResourceHttpContent. getContentType()
HttpField
MimeTypes.Type. getContentTypeField()
HttpField
HttpContent. getETag()
HttpField
PrecompressedHttpContent. getETag()
HttpField
ResourceHttpContent. getETag()
HttpField
HttpFields. getField(int index)
Get a Field by index.HttpField
HttpFields. getField(java.lang.String name)
HttpField
HttpFields. getField(HttpHeader header)
HttpField
HttpContent. getLastModified()
HttpField
PrecompressedHttpContent. getLastModified()
HttpField
ResourceHttpContent. getLastModified()
HttpField
HttpFields. remove(java.lang.String name)
Remove a field.HttpField
HttpFields. remove(HttpHeader name)
Remove a field.Methods in org.eclipse.jetty.http that return types with arguments of type HttpField Modifier and Type Method Description Trie<HttpField>
HttpParser. getFieldCache()
java.util.List<HttpField>
HttpFields. getFields(java.lang.String name)
java.util.List<HttpField>
HttpFields. getFields(HttpHeader header)
java.util.Iterator<HttpField>
HttpFields. iterator()
java.util.Iterator<HttpField>
MetaData. iterator()
java.util.ListIterator<HttpField>
HttpFields. listIterator()
java.util.stream.Stream<HttpField>
HttpFields. stream()
Methods in org.eclipse.jetty.http with parameters of type HttpField Modifier and Type Method Description void
HttpFields. add(HttpField field)
boolean
HttpFields. contains(HttpField field)
boolean
HttpField. isSameName(HttpField field)
void
HttpParser.HttpHandler. parsedHeader(HttpField field)
This is the method called by parser when an HTTP Header name and value is founddefault void
HttpParser.HttpHandler. parsedTrailer(HttpField field)
This is the method called by parser when an HTTP Trailer name and value is foundvoid
HttpFields. put(HttpField field)
static void
HttpGenerator. putTo(HttpField field, java.nio.ByteBuffer bufferInFillMode)
Method parameters in org.eclipse.jetty.http with type arguments of type HttpField Modifier and Type Method Description void
HttpFields. computeField(java.lang.String name, java.util.function.BiFunction<java.lang.String,java.util.List<HttpField>,HttpField> computeFn)
Computes a single field for the given HTTP header name and for existing fields with the same name.void
HttpFields. computeField(java.lang.String name, java.util.function.BiFunction<java.lang.String,java.util.List<HttpField>,HttpField> computeFn)
Computes a single field for the given HTTP header name and for existing fields with the same name.void
HttpFields. computeField(HttpHeader header, java.util.function.BiFunction<HttpHeader,java.util.List<HttpField>,HttpField> computeFn)
Computes a single field for the given HttpHeader and for existing fields with the same header.void
HttpFields. computeField(HttpHeader header, java.util.function.BiFunction<HttpHeader,java.util.List<HttpField>,HttpField> computeFn)
Computes a single field for the given HttpHeader and for existing fields with the same header. -
Uses of HttpField in org.eclipse.jetty.http2.hpack
Subclasses of HttpField in org.eclipse.jetty.http2.hpack Modifier and Type Class Description class
AuthorityHttpField
class
StaticTableHttpField
Methods in org.eclipse.jetty.http2.hpack that return HttpField Modifier and Type Method Description HttpField
HpackContext.Entry. getHttpField()
Methods in org.eclipse.jetty.http2.hpack with parameters of type HttpField Modifier and Type Method Description HpackContext.Entry
HpackContext. add(HttpField field)
void
MetaDataBuilder. emit(HttpField field)
void
HpackEncoder. encode(java.nio.ByteBuffer buffer, HttpField field)
HpackContext.Entry
HpackContext. get(HttpField field)
-
Uses of HttpField in org.eclipse.jetty.server
Fields in org.eclipse.jetty.server declared as HttpField Modifier and Type Field Description static HttpField
HttpConnection. CONNECTION_CLOSE
Methods in org.eclipse.jetty.server that return HttpField Modifier and Type Method Description HttpField
ResourceService. getCacheControl()
HttpField
CachedContentFactory.CachedHttpContent. getContentEncoding()
HttpField
CachedContentFactory.CachedHttpContent. getContentLength()
HttpField
CachedContentFactory.CachedHttpContent. getContentType()
HttpField
Server. getDateField()
HttpField
CachedContentFactory.CachedHttpContent. getETag()
HttpField
CachedContentFactory.CachedPrecompressedHttpContent. getETag()
HttpField
CachedContentFactory.CachedHttpContent. getLastModified()
Methods in org.eclipse.jetty.server with parameters of type HttpField Modifier and Type Method Description protected void
ForwardedRequestCustomizer. onError(HttpField field, java.lang.Throwable t)
void
HttpChannelOverHttp. parsedHeader(HttpField field)
void
HttpChannelOverHttp. parsedTrailer(HttpField field)
void
ResourceService. setCacheControl(HttpField cacheControl)
-
Uses of HttpField in org.eclipse.jetty.server.handler.gzip
Fields in org.eclipse.jetty.server.handler.gzip declared as HttpField Modifier and Type Field Description static HttpField
GzipHttpOutputInterceptor. VARY_ACCEPT_ENCODING
static HttpField
GzipHttpOutputInterceptor. VARY_ACCEPT_ENCODING_USER_AGENT
Methods in org.eclipse.jetty.server.handler.gzip that return HttpField Modifier and Type Method Description protected HttpField
GzipHandler. getVaryField()
Constructors in org.eclipse.jetty.server.handler.gzip with parameters of type HttpField Constructor Description GzipHttpOutputInterceptor(GzipFactory factory, HttpField vary, int bufferSize, HttpChannel channel, HttpOutput.Interceptor next, boolean syncFlush)
GzipHttpOutputInterceptor(GzipFactory factory, HttpField vary, HttpChannel channel, HttpOutput.Interceptor next, boolean syncFlush)
-