if (userSchSessions != null) {
Map<Long, SchSession> schSessionMap = userSchSessions.getSchSessionMap();
for (Long sessionKey : schSessionMap.keySet()) {
SchSession schSession = schSessionMap.get(sessionKey);
//disconnect ssh session
schSession.getChannel().disconnect();
schSession.getSession().disconnect();
schSession.setChannel(null);
schSession.setSession(null);
schSession.setInputToChannel(null);
schSession.setCommander(null);
schSession.setOutFromChannel(null);
schSession = null;
//remove from map
schSessionMap.remove(sessionKey);
}