public interface RequestContext
Modifier and Type | Method and Description |
---|---|
String |
get(String key)
Retrieve a registered variable.
|
Set<String> |
keySet()
Retrieves the keys that have been registered to this context.
|
void |
put(String key,
String value)
Register a variable and a value.
|
String |
remove(String key)
Deletes a registered variable.
|
void put(String key, String value)
key
- the variable name.value
- the value.String get(String key)
key
- the variable name.Set<String> keySet()
Copyright © 2023 The Apache Software Foundation. All rights reserved.