| org.araneaframework.InputData
All known Subclasses: org.araneaframework.mock.MockInputData,
InputData | public interface InputData extends Extendable,Narrowable(Code) | | Provides access to request parameters.
InputData has 2 types of getters
- Scoped data - data that depends on the current scope
- Global data - data which isn't aware of scoping
See Also: HttpInputData author: "Toomas Römer" author: Jevgeni Kabanov (ekabanov at araneaframework dot org) |
Field Summary | |
final public static String | INPUT_DATA_KEY The key that can be used to retrieve InputData (as an example a request scope attribute). |
INPUT_DATA_KEY | final public static String INPUT_DATA_KEY(Code) | | The key that can be used to retrieve InputData (as an example a request scope attribute).
|
getGlobalData | public Map getGlobalData()(Code) | | Returns the global data of this object. Global data is not the same
as scoped data with empty path.
the map with the global data |
getOutputData | public OutputData getOutputData()(Code) | | Returns the current OutputData.
|
getScopedData | public Map getScopedData(Path scope)(Code) | | Returns the data with the Path prefix.
Parameters: scope - the Path prefix a map with the data |
|
|