in ons-core/ons-api/src/main/java/org/apache/rocketmq/ons/api/Message.java [54:62]
public void putSystemProperties(final String key, final String value) {
if (null == this.systemProperties) {
this.systemProperties = new Properties();
}
if (key != null && value != null) {
this.systemProperties.put(key, value);
}
}