return this.connectReturnQos.getSessionName();
if (this.connectQos != null) {
SessionName sessionName = this.connectQos.getSessionName();
if (sessionName != null && sessionName.getNodeIdStr() == null && this.serverNodeId != null) {
// In cluster setup the remote cluster node id is forced
SessionName sn = new SessionName(glob, new NodeId(this.serverNodeId), sessionName.getLoginName(),
sessionName.getPublicSessionId());
// log.info("Using sessionName=" + sn.getAbsoluteName());
this.connectQos.setSessionName(sn);
return sn;
}