Skip to content

Commit

Permalink
Done
Browse files Browse the repository at this point in the history
Signed-off-by: Václav Muzikář <[email protected]>
  • Loading branch information
vmuzikar committed Dec 10, 2024
1 parent 741e4d4 commit 994f773
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -579,10 +579,20 @@ public List<ConfigValue> getKcConfigValues() {
return List.of(Configuration.getConfigValue(getFrom()));
}

/**
* Returns a new PropertyMapper tailored for the given env var key.
* This is currently useful in {@link WildcardPropertyMapper} where "to" and "from" fields need to include a specific
* wildcard key.
*/
public PropertyMapper<?> forEnvKey(String key) {
return this;
}

/**
* Returns a new PropertyMapper tailored for the given key.
* This is currently useful in {@link WildcardPropertyMapper} where "to" and "from" fields need to include a specific
* wildcard key.
*/
public PropertyMapper<?> forKey(String key) {
return this;
}
Expand Down

0 comments on commit 994f773

Please sign in to comment.