H
- The type of Header
produced by the factory.public abstract class HeaderFactory<H extends Header> extends Object
Header
classes from String representation.Modifier and Type | Field and Description |
---|---|
static Map<String,HeaderFactory<?>> |
FACTORIES
A map of header names to known
HeaderFactory implementations. |
static Map<Class<? extends Header>,String> |
HEADER_NAMES
A map of
Header types to the names of the headers they implement. |
Constructor and Description |
---|
HeaderFactory() |
Modifier and Type | Method and Description |
---|---|
protected abstract H |
parse(List<String> values)
Create a header instance from a list of String representations, each of
which may in turn contain multiple values if the header supports them.
|
H |
parse(Object value)
Create a header instance from a provided object representation.
|
protected abstract H |
parse(String value)
Create a header instance from String representation, which may contain
multiple values if the header supports them.
|
public static final Map<Class<? extends Header>,String> HEADER_NAMES
Header
types to the names of the headers they implement.public static final Map<String,HeaderFactory<?>> FACTORIES
HeaderFactory
implementations.protected abstract H parse(String value) throws MalformedHeaderException
value
- The string representation.MalformedHeaderException
- When the value cannot be parsed.protected abstract H parse(List<String> values) throws MalformedHeaderException
values
- The string representations.MalformedHeaderException
- When the value cannot be parsed.public H parse(Object value) throws MalformedHeaderException
Subclasses may wish to override this method in order to support other types of value.
value
- An object representation - may be a string, a collection
of strings, an array of strings, an instance of Header
,
or some other object type supported by the subclass.MalformedHeaderException
- When the value cannot be parsed.Copyright © 2010-2018, ForgeRock All Rights Reserved.