public interface ConfigurationFilter
Implementations will be discovered within the user's classpath and given an opportunity to filter any user-provided configuration values.
Created by bob on 8/31/17.| Modifier and Type | Method and Description |
|---|---|
<T> T |
filter(String key,
T value)
Filter the provided configuration key and value.
|
<T> T filter(String key, T value)
Each filter will be given an opportunity to filter each user-provided value. If the filter chooses to perform no filtering, it should simply return the original value.
T - The type of the filtered value.key - The key of the configuration item to filter.value - The value to filter.Copyright © 2018 JBoss by Red Hat. All rights reserved.