*/
@Override
public void setClientState(CellClientState clientState) {
super.setClientState(clientState);
AppConventionalCellClientState state = (AppConventionalCellClientState) clientState;
appName = state.getAppName();
launchLocation = state.getLaunchLocation();
launchUser = state.getLaunchUser();
command = state.getCommand();
if (launchLocation.equalsIgnoreCase("user") &&
launchUser.equals(cellCacheSession.getUserID().getUsername())) {
// Master case: nothing to do
} else {
// Slave case
connectionInfo = state.getConnectionInfo();
logger.info("Initial connection info value for slave = " + connectionInfo);
}
}