Uses of Interface
org.eclipse.jetty.http.HttpFields.Mutable
Packages that use HttpFields.Mutable
Package
Description
Jetty Server : Modular Servlet Integration
Jetty Server : Core Handler API
Jetty Server : Core Handler API
Jetty Http : Tools for Http processing
Jetty Server : Core Server API
Jetty Server : Core Handler API
-
Uses of HttpFields.Mutable in org.eclipse.jetty.client
Method parameters in org.eclipse.jetty.client with type arguments of type HttpFields.MutableModifier and TypeMethodDescriptionRequest.headers(Consumer<HttpFields.Mutable> consumer) Modifies the headers of this request. -
Uses of HttpFields.Mutable in org.eclipse.jetty.client.transport
Method parameters in org.eclipse.jetty.client.transport with type arguments of type HttpFields.MutableModifier and TypeMethodDescriptionHttpRequest.headers(Consumer<HttpFields.Mutable> consumer) HttpResponse.headers(Consumer<HttpFields.Mutable> consumer) -
Uses of HttpFields.Mutable in org.eclipse.jetty.ee10.fcgi.proxy
Methods in org.eclipse.jetty.ee10.fcgi.proxy with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionprotected voidFastCGIProxyServlet.customizeFastCGIHeaders(Request proxyRequest, HttpFields.Mutable fastCGIHeaders) -
Uses of HttpFields.Mutable in org.eclipse.jetty.ee10.servlet
Methods in org.eclipse.jetty.ee10.servlet that return HttpFields.MutableModifier and TypeMethodDescriptionServletContextResponse.getHeaders()ServletCoreResponse.getHeaders()Methods in org.eclipse.jetty.ee10.servlet with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionErrorHandler.badMessageError(int status, String reason, HttpFields.Mutable fields) Bad Message Error body -
Uses of HttpFields.Mutable in org.eclipse.jetty.ee8.nested
Methods in org.eclipse.jetty.ee8.nested that return HttpFields.MutableMethods in org.eclipse.jetty.ee8.nested with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionErrorHandler.badMessageError(int status, String reason, HttpFields.Mutable fields) Bad Message Error bodyprotected voidResponse.onResponse(HttpFields.Mutable headers) -
Uses of HttpFields.Mutable in org.eclipse.jetty.ee9.fcgi.proxy
Methods in org.eclipse.jetty.ee9.fcgi.proxy with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionprotected voidFastCGIProxyServlet.customizeFastCGIHeaders(Request proxyRequest, HttpFields.Mutable fastCGIHeaders) -
Uses of HttpFields.Mutable in org.eclipse.jetty.ee9.nested
Methods in org.eclipse.jetty.ee9.nested that return HttpFields.MutableMethods in org.eclipse.jetty.ee9.nested with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionErrorHandler.badMessageError(int status, String reason, HttpFields.Mutable fields) Bad Message Error bodyprotected voidResponse.onResponse(HttpFields.Mutable headers) -
Uses of HttpFields.Mutable in org.eclipse.jetty.fcgi.client.transport
Methods in org.eclipse.jetty.fcgi.client.transport with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionvoidHttpClientTransportOverFCGI.customize(Request request, HttpFields.Mutable fastCGIHeaders) -
Uses of HttpFields.Mutable in org.eclipse.jetty.fcgi.proxy
Methods in org.eclipse.jetty.fcgi.proxy with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionprotected voidFastCGIProxyHandler.customizeFastCGIHeaders(Request proxyToServerRequest, HttpFields.Mutable fastCGIHeaders) -
Uses of HttpFields.Mutable in org.eclipse.jetty.http
Classes in org.eclipse.jetty.http that implement HttpFields.MutableModifier and TypeClassDescriptionstatic classA wrapper ofHttpFieldsinstances.static classDeprecated, for removal: This API element is subject to removal in a future version.static classstatic classstatic classMethods in org.eclipse.jetty.http that return HttpFields.MutableModifier and TypeMethodDescriptiondefault HttpFields.MutableAdds a newHttpFieldwith the given name andlongvalue.default HttpFields.MutableAdds a newHttpFieldwith the given name and string value.default HttpFields.MutableAdds a field associated with a list of values.default HttpFields.MutableAdds the givenHttpFieldto this instance.default HttpFields.MutableHttpFields.Mutable.add(HttpFields fields) Adds all theHttpFields of the givenHttpFieldsto this instance.default HttpFields.MutableHttpFields.Mutable.add(HttpHeader header, long value) Adds a newHttpFieldwith the given name andlongvalue.default HttpFields.MutableHttpFields.Mutable.add(HttpHeader header, String value) Adds a newHttpFieldwith the given name and string value.default HttpFields.MutableHttpFields.Mutable.add(HttpHeader header, HttpHeaderValue value) Adds a newHttpFieldwith the given name and value.default HttpFields.MutableAdds the given value(s) to theHttpFieldwith the given name, encoding them as comma-separated if necessary, unless they are already present in existing fields with the same name.default HttpFields.MutableHttpFields.Mutable.addCSV(HttpHeader header, String... values) Adds the given value(s) to theHttpFieldwith the given name, encoding them as comma-separated if necessary, unless they are already present in existing fields with the same name.default HttpFields.MutableHttpFields.Mutable.addDateField(String name, long date) Adds a new dateHttpFieldwith the given name anddatevalue.static HttpFields.MutableHttpFields.build()Returns an emptyHttpFields.Mutableinstance.static HttpFields.MutableHttpFields.build(int capacity) Returns an emptyHttpFields.Mutableinstance with the given initialcapacity.static HttpFields.MutableHttpFields.build(HttpFields fields) Returns a newHttpFields.Mutableinstance containing a copy of all theHttpFields of the givenHttpFieldsparameter.static HttpFields.MutableHttpFields.build(HttpFields fields, EnumSet<HttpHeader> removeFields) Returns a newHttpFields.Mutableinstance containing a copy of all theHttpFields of the givenHttpFields, removing theHttpFields with the given names.static HttpFields.MutableHttpFields.build(HttpFields fields, HttpField replaceField) Returns a newHttpFields.Mutableinstance containing a copy of all theHttpFields of the givenHttpFields, replacing with the givenHttpFieldall the fieldsHttpFields with the same name.default HttpFields.MutableHttpFields.Mutable.clear()Removes all the fields from this instance.HttpFields.Mutable.Wrapper.clear()default HttpFields.MutableHttpFields.Mutable.computeField(String name, BiFunction<String, List<HttpField>, HttpField> computeFn) Computes a single field for the given HTTP field name and for existing fields with the same name.default HttpFields.MutableHttpFields.Mutable.computeField(HttpHeader header, BiFunction<HttpHeader, List<HttpField>, HttpField> computeFn) Computes a single field for the givenHttpHeaderand for existing fields with the same header.HttpFields.Mutable.Wrapper.getWrapped()default HttpFields.MutablePuts a newHttpFieldwith the given name andlongvalue, with the semantic ofHttpFields.Mutable.put(HttpField).default HttpFields.MutableThis method behaves likeHttpFields.Mutable.remove(String)when the givenvalueisnull, otherwise behaves likeHttpFields.Mutable.put(HttpField).default HttpFields.MutablePuts a field associated with a list of values.default HttpFields.MutablePuts the givenHttpFieldinto this instance.default HttpFields.MutableHttpFields.Mutable.put(HttpHeader header, long value) Puts a newHttpFieldwith the given name andlongvalue, with the semantic ofHttpFields.Mutable.put(HttpField).default HttpFields.MutableHttpFields.Mutable.put(HttpHeader header, String value) This method behaves likeHttpFields.Mutable.remove(HttpHeader)when the givenvalueisnull, otherwise behaves likeHttpFields.Mutable.put(HttpField).default HttpFields.MutableHttpFields.Mutable.put(HttpHeader header, HttpHeaderValue value) This method behaves likeHttpFields.Mutable.remove(HttpHeader)when the givenvalueisnull, otherwise behaves likeHttpFields.Mutable.put(HttpField).default HttpFields.MutablePuts a new dateHttpFieldwith the given name anddatevalue, with the semantic ofHttpFields.Mutable.put(HttpField).default HttpFields.MutableHttpFields.Mutable.putDate(HttpHeader name, long date) Puts a new dateHttpFieldwith the given name anddatevalue, with the semantic ofHttpFields.Mutable.put(HttpField).default HttpFields.MutableRemoves all the fields with the given name.default HttpFields.MutableHttpFields.Mutable.remove(EnumSet<HttpHeader> headers) Removes all the fields with the given names.default HttpFields.MutableHttpFields.Mutable.remove(HttpHeader header) Removes all the fields with the given name.Methods in org.eclipse.jetty.http with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionstatic voidHttpGenerator.putTo(HttpFields.Mutable fields, ByteBuffer bufferInFillMode) Constructors in org.eclipse.jetty.http with parameters of type HttpFields.Mutable -
Uses of HttpFields.Mutable in org.eclipse.jetty.http2.server
Methods in org.eclipse.jetty.http2.server with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionAuthorityCustomizer.customize(Request request, HttpFields.Mutable responseHeaders) HTTP2CServerConnectionFactory.upgradeConnection(Connector connector, EndPoint endPoint, MetaData.Request request, HttpFields.Mutable response101) -
Uses of HttpFields.Mutable in org.eclipse.jetty.rewrite
Methods in org.eclipse.jetty.rewrite with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionRewriteCustomizer.customize(Request request, HttpFields.Mutable responseHeaders) -
Uses of HttpFields.Mutable in org.eclipse.jetty.server
Methods in org.eclipse.jetty.server that return HttpFields.MutableMethods in org.eclipse.jetty.server with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionForwardedRequestCustomizer.customize(Request request, HttpFields.Mutable responseHeaders) HostHeaderCustomizer.customize(Request request, HttpFields.Mutable responseHeaders) HttpConfiguration.Customizer.customize(Request request, HttpFields.Mutable responseHeaders) ProxyCustomizer.customize(Request request, HttpFields.Mutable responseHeaders) SecureRequestCustomizer.customize(Request request, HttpFields.Mutable responseHeaders) voidHttpStream.prepareResponse(HttpFields.Mutable headers) Prepare the response headers with respect to the stream.voidHttpStream.Wrapper.prepareResponse(HttpFields.Mutable headers) ConnectionFactory.Upgrading.upgradeConnection(Connector connector, EndPoint endPoint, MetaData.Request upgradeRequest, HttpFields.Mutable responseFields) Create a connection for an upgrade request. -
Uses of HttpFields.Mutable in org.eclipse.jetty.server.handler
Methods in org.eclipse.jetty.server.handler with parameters of type HttpFields.MutableModifier and TypeMethodDescriptionErrorHandler.badMessageError(int status, String reason, HttpFields.Mutable fields) Deprecated, for removal: This API element is subject to removal in a future version.Do not override. -
Uses of HttpFields.Mutable in org.eclipse.jetty.websocket.core.client
Method parameters in org.eclipse.jetty.websocket.core.client with type arguments of type HttpFields.MutableModifier and TypeMethodDescriptionvoidCoreClientUpgradeRequest.headers(Consumer<HttpFields.Mutable> consumer)