Project

General

Profile

« Previous | Next » 

Revision 5374

Added by berkley almost 14 years ago

refactored the sessionService to use a correct singleton initialization scheme. Added true authentication to ResourceHandler.

View differences:

ClientViewHelper.java
334 334
        }
335 335
        
336 336
        boolean oldLoginValue = result.loggedIn;
337
        result.setLoggedIn(SessionService.validateSession(sessionId));
337
        result.setLoggedIn(SessionService.getInstance().validateSession(sessionId));
338 338
        if (result.isLoggedIn()) {
339
        	SessionData sessionData = SessionService.getRegisteredSession(sessionId);
339
        	SessionData sessionData = SessionService.getInstance().getRegisteredSession(sessionId);
340 340
        	result.setUserName(sessionData.getName());
341 341
        }
342 342
        

Also available in: Unified diff