Uses of Class
org.forgerock.http.header.Directive
-
Packages that use Directive Package Description org.forgerock.http.header Processes HTTP message header fields. -
-
Uses of Directive in org.forgerock.http.header
Methods in org.forgerock.http.header that return Directive Modifier and Type Method Description static Directive
Directive. directive(String name, String value)
Return aDirective
based on the name and value, if value was quoted then this is also captured.static Directive
HeaderUtil. parseDirective(String value)
Splits a single HTTP directive name and value from an input string value.Methods in org.forgerock.http.header that return types with arguments of type Directive Modifier and Type Method Description Map<String,Directive>
ContentTypeHeader. getDirectives()
Returns all directives in the message, keyed off the directive name, or an empty map if none specified.static Map<String,Directive>
HeaderUtil. parseDirectivesAsDirectiveMap(Collection<String> values)
Parses a set of HTTP directives from a collection of values.Constructor parameters in org.forgerock.http.header with type arguments of type Directive Constructor Description ContentTypeHeader(String type, Map<String,Directive> directives)
Constructs a new header based on message type and any message directives.
-