Open
Description
Description
Example:
public KeycloakServerConfigBuilder properties(Map<String, String> properties) {
this.properties.putAll(properties);
return this;
}
public KeycloakServerConfigBuilder property(String key, String value) {
this.properties.put(key, value);
return this;
}
properties.forEach((key, value) -> args.add("-D" + key + "=" + value));
Discussion
No response
Motivation
No response
Details
No response