* The key is of type String and the value of type ClientProperty
*/
public synchronized void mergeRemoteProperties(Map map) {
if (map == null || map.size() == 0) return;
if (this.remoteProperties == null) {
this.remoteProperties = new ClientPropertiesInfo(new HashMap());
/*// Changed 2007-06-29 marcel: we now take a clone
this.remoteProperties = new ClientPropertiesInfo(map);
// remove, is only a hint:
this.remoteProperties.put(Constants.CLIENTPROPERTY_REMOTEPROPERTIES, (ClientProperty)null);
return;