phase = new TargetLoginPhase(this);
if (phase.execute(lastReceivedPDU)) {
LOGGER.debug("Login Phase successful");
// if this is the leading connection, set the session type
final Settings settings = getSettings();
if (isLeadingConnection) targetSession.setSessionType(SessionType.getSessionType(settings.getSessionType()));
targetSession.setTargetName(settings.getTargetName());
// *** full feature phase ***
phase = new TargetFullFeaturePhase(this);
phase.execute();
}