allow init-time activity parameter updates without eventing

This commit is contained in:
Jonathan Shook 2022-06-09 15:01:30 -05:00
parent b9d08bf04c
commit d1541f0dd2

View File

@ -172,6 +172,12 @@ public class ParameterMap extends ConcurrentHashMap<String,Object> implements Bi
return super.get(key);
}
public void setSilently(String paramName, Object newValue) {
super.put(paramName, String.valueOf(newValue));
logger.trace("setting param silently " + paramName + "=" + newValue);
}
public void set(String paramName, Object newValue) {
super.put(paramName, String.valueOf(newValue));
logger.info("setting param " + paramName + "=" + newValue);