org.apache.turbine.pipeline
Interface PipelineData
- All Known Subinterfaces:
- RunData, TurbineRunData
- All Known Implementing Classes:
- DefaultPipelineData, DefaultTurbineRunData
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.
HISTORICAL NOTE: The "PipelineData" name was assigned to this
holder as it functions similarily to the RunData object, but without
the additional methods
- Author:
- Eric Pugh, Peter Courcoux
put
void put(Class<?> name,
Map<?,?> value)
get
Map<?,?> get(Class<?> name)
get
Object get(Class<?> key,
Object innerKey)
Copyright © 2000-2011 The Apache Software Foundation. All Rights Reserved.