Uses of Class
com.google.appengine.api.urlfetch.HTTPHeader
-
Packages that use HTTPHeader Package Description com.google.appengine.api.urlfetch Provides a service to make HTTP/S requests of other servers on the internet. -
-
Uses of HTTPHeader in com.google.appengine.api.urlfetch
Methods in com.google.appengine.api.urlfetch that return types with arguments of type HTTPHeader Modifier and Type Method Description List<HTTPHeader>
HTTPRequest. getHeaders()
Returns an immutableList
ofHTTPHeader
objects that have been added to this request.List<HTTPHeader>
HTTPResponse. getHeaders()
Returns aList
of HTTP response headers that were returned by the remote server.List<HTTPHeader>
HTTPResponse. getHeadersUncombined()
Returns aList
of HTTP response headers that were returned by the remote server.Methods in com.google.appengine.api.urlfetch with parameters of type HTTPHeader Modifier and Type Method Description void
HTTPRequest. addHeader(HTTPHeader header)
Addsheader
to this request.void
HTTPRequest. setHeader(HTTPHeader header)
Sets anHTTPHeader
for this request.Constructor parameters in com.google.appengine.api.urlfetch with type arguments of type HTTPHeader Constructor Description HTTPResponse(int responseCode, byte @Nullable [] content, @Nullable URL finalUrl, List<HTTPHeader> headers)
Construct an HTTPResponse object.
-