Uses of Class
org.forgerock.http.protocol.Header
-
Packages that use Header Package Description org.forgerock.http.header Processes HTTP message header fields.org.forgerock.http.protocol Models and manages elements of the Hypertext Transfer Protocol. -
-
Uses of Header in org.forgerock.http.header
Classes in org.forgerock.http.header with type parameters of type Header Modifier and Type Class Description classHeaderFactory<H extends Header>Creates instances ofHeaderclasses from String representation.Subclasses of Header in org.forgerock.http.header Modifier and Type Class Description classAbstractSetCookieHeaderAn abstract SetCookieHeader class forSetCookieHeaderandSetCookie2Header.classAcceptApiVersionHeaderProcesses theAccept-API-Versionmessage header.classAcceptLanguageHeaderA header class representing the Accept-Language HTTP header.classAuthorizationHeaderA header class representing theAuthorizationHTTP header.classConnectionHeaderProcesses theConnectionmessage header.classContentApiVersionHeaderProcesses theContent-API-Versionmessage header.classContentEncodingHeaderProcesses theContent-Encodingmessage header.classContentLengthHeaderProcesses theContent-Lengthmessage header.classContentTypeHeaderProcesses theContent-Typemessage header.classCookieHeaderProcesses theCookierequest message header.classForwardedHeaderAHeaderrepresentation of theForwardedHTTP header.classGenericHeaderAn undecoded HTTP message header.classLocationHeaderProcesses theLocationmessage header.classReferrerHeaderAHeaderrepresentation of theReferrerHTTP header.classSetCookie2HeaderDeprecated, for removal: This API element is subject to removal in a future version.This header is no longer supported by browsers.classSetCookieHeaderProcesses theSet-Cookierequest message header.classTrailerHeaderAHeaderrepresentation of theTrailerHTTP response header.classTransactionIdHeaderProcesses the transactionId header used mainly for audit purpose.classWarningHeaderProcesses theWarningmessage header.classWwwAuthenticateHeaderAHeaderrepresentation of the WWW-Authenticate HTTP header.classXForwardedForHeaderProcesses theX-Forwarded-Formessage header.Fields in org.forgerock.http.header with type parameters of type Header Modifier and Type Field Description static Map<Class<? extends Header>,String>HeaderFactory. HEADER_NAMESA map ofHeadertypes to the names of the headers they implement. -
Uses of Header in org.forgerock.http.protocol
Methods in org.forgerock.http.protocol with type parameters of type Header Modifier and Type Method Description <H extends Header>
HHeaders. get(Class<H> headerType)Returns the specifiedHeaderor {code null} if the header is not included in the message.Methods in org.forgerock.http.protocol that return Header Modifier and Type Method Description HeaderHeaders. get(Object key)Rich-type friendly get method.HeaderHeaders. put(String key, Object value)A script compatible put method that will accept aHeader,String,Collection<String>andString[]value.HeaderHeaders. put(Header header)A put method to add a particularHeaderinstance.HeaderHeaders. remove(Object key)Rich-type friendly remove method.Methods in org.forgerock.http.protocol that return types with arguments of type Header Modifier and Type Method Description Map<String,Header>Headers. asMapOfHeaders()TheHeadersclass extendsMap<String, Object>to support flexible parameters in scripting.Methods in org.forgerock.http.protocol with parameters of type Header Modifier and Type Method Description voidHeaders. add(Header header)An add method to add a particularHeaderinstance.MMessage. addHeaders(Header... headers)Add one or more headers to the message.TMessageImpl. addHeaders(Header... headers)ResponseResponse. addTrailers(Header... trailers)Add one or more trailers, aka trailing headers, to the response.HeaderHeaders. put(Header header)A put method to add a particularHeaderinstance.MMessage. putHeaders(Header... headers)Put one or more headers to the message.TMessageImpl. putHeaders(Header... headers)ResponseResponse. putTrailers(Header... trailers)Put one or more trailers, aka trailing headers, to the response.Method parameters in org.forgerock.http.protocol with type arguments of type Header Modifier and Type Method Description StringHeaders. getFirst(Class<? extends Header> key)Gets the first value of the header, or null if the header does not exist.
-