### 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_