public interface Augmentations
Note: Methods that receive Augmentations are required to copy the information if it is to be saved for use beyond the scope of the method. The Augmentations content is volatile, and maybe modified by any method in any component in the pipeline. Therefore, methods passed this structure should not save any reference to the structure.
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Remove all objects from the Augmentations structure.
|
Object |
get(String key)
Get information identified by a key from the Augmentations structure
|
Set<String> |
keys() |
Object |
put(String key,
Object item)
Add additional information identified by a key to the Augmentations structure.
|
Object |
remove(String key)
Remove additional info from the Augmentations structure
|
Object put(String key, Object item)
key - Identifier, can't be nullitem - Additional informationnull if it did not have one.Object get(String key)
key - Identifier, can't be nullnull if the key is not mapped to any value.Object remove(String key)
key - Identifier, can't be nullnull if it did not have one.void clear()
Copyright © 2023 Gargoyle Software Inc.. All rights reserved.