public interface PipelineData
A PipelineData is a holder for data being passed from one
Valve to the next.
The detailed contract for a Valve is included in the description of
the invoke()
method below.
Modifier and Type | Method and Description |
---|---|
Map<Class<?>,? super Object> |
get(Class<?> name)
Get the configured map of objects for the given key
|
<T> T |
get(Class<?> key,
Class<T> innerKey)
Get a value from the configured map of objects for the given keys
|
void |
put(Class<?> name,
Map<Class<?>,? super Object> value)
Put a configured map of objects into the pipeline data object
|
void put(Class<?> name, Map<Class<?>,? super Object> value)
name
- the key classvalue
- the value mapMap<Class<?>,? super Object> get(Class<?> name)
name
- the key classCopyright © 2000-2015 The Apache Software Foundation. All Rights Reserved.