* @param up setting for the bit flag (true/false)
*/
public void setBrokerIsUp(boolean up, UID brokerSession, Object userData)
{
UID uid = brokerSession;
Integer oldstatus = null;
Integer newstatus = null;
synchronized (this) {
if (!up && !uid.equals(getBrokerSessionUID())) {
logger.log(logger.INFO, br.getKString(
BrokerResources.I_DOWN_STATUS_ON_BROKER_SESSION,
"[BrokerSession:"+uid+"]", this.toString()));
oldstatus = new Integer(BrokerStatus.BROKER_INDOUBT);
newstatus = BrokerStatus.setBrokerIsDown(oldstatus);