public String addRemoteProperty(String key, String value) {
ClientProperty old = this.sessionInfo.addRemoteProperty(key, value);
if (old == null)
return "Added client property '" + key + "'";
else
return "Replaced existing client property '" + old.toXml("", "remoteProperty").trim() + "'";
}
/** JMX */
public java.lang.String usage() {
return this.sessionInfo.usage();