Subversion Repositories SmartDukaan

Rev

Rev 2157 | Rev 2200 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2157 Rev 2183
Line 46... Line 46...
46
			uidCookie.setPath("/");
46
			uidCookie.setPath("/");
47
			uidCookie.setValue("");
47
			uidCookie.setValue("");
48
			uidCookie.setMaxAge(0);
48
			uidCookie.setMaxAge(0);
49
	    	this.response.addCookie(uidCookie);
49
	    	this.response.addCookie(uidCookie);
50
		}	
50
		}	
51
		DataLogger.logData(Event.LOGOUT.name(), Long.toString(userinfo.getUserId()), userinfo.getEmail());
51
		DataLogger.logData(Event.LOGOUT.name(), session.getId(), Long.toString(userinfo.getUserId()), userinfo.getEmail());
52
		return "success";
52
		return "success";
53
    	
53
    	
54
    }
54
    }
55
        
55
        
56
 
56