this.rootPath = rootPath;
return this;
}
public ContextConfigurator withParameter(String key, String value) {
ConfigurationParameter parameter = ConfigurationParameter.byKey(key);
if (parameter == null) {
properties.put(key, value);
} else {
withParameter(parameter, value);
}