1 17 18 package org.apache.geronimo.console.ajax; 19 20 import javax.servlet.http.HttpSession ; 21 22 import uk.ltd.getahead.dwr.WebContextFactory; 23 24 28 public class ProgressMonitor 29 { 30 public ProgressInfo getProgressInfo() 31 { 32 HttpSession session = WebContextFactory.get().getSession(false); 33 34 if (session.getAttribute(ProgressInfo.PROGRESS_INFO_KEY) != null) { 35 return (ProgressInfo) session.getAttribute(ProgressInfo.PROGRESS_INFO_KEY); 36 } else { 37 return new ProgressInfo(); 38 } 39 } 40 } 41 | Popular Tags |