Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Jetty 9.3.0 API changes

On 3/12/2015 2:52 PM, Joakim Erdfelt wrote:
HttpFields is an internal class. (at least the server version of it is, maybe not the jetty-client version)

Also, the changes are likely to handle the new reality in Jetty 9.3, which is HTTP/2 and all it changes/brings to the table.
In many cases, deprecation of internal methods and classes is just not possible to completely support. (not sure about this specific case tho)

How/Why are you using it?

We're using it to retrieve header fields out of an org.eclipse.jetty.client.api.Response, in order to determine what a server sent to us in its reply.

You can see the immediate calling code at
https://github.com/proofpoint/platform/blob/master/http-client/src/main/java/com/proofpoint/http/client/jetty/JettyHttpClient.java

Back to the top