| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
package com.buckosoft.PicMan.web; |
| 9 | |
|
| 10 | |
import java.io.IOException; |
| 11 | |
import java.util.HashMap; |
| 12 | |
import java.util.Map; |
| 13 | |
|
| 14 | |
import javax.servlet.ServletException; |
| 15 | |
import javax.servlet.http.HttpServletRequest; |
| 16 | |
import javax.servlet.http.HttpServletResponse; |
| 17 | |
|
| 18 | |
import org.springframework.web.servlet.ModelAndView; |
| 19 | |
|
| 20 | |
import com.buckosoft.BSAccount.web.BSAccountPageController; |
| 21 | |
import com.buckosoft.BSAccount.web.BSAccountUserWebSession; |
| 22 | |
import com.buckosoft.PicMan.business.PicManFacade; |
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | 0 | public class ImportPicsPageController extends BSAccountPageController { |
| 30 | |
private PicManFacade pmf; |
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | 0 | public void setPicMan(PicManFacade pmf) { this.pmf = pmf; } |
| 36 | |
|
| 37 | |
|
| 38 | |
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) |
| 39 | |
throws ServletException, IOException { |
| 40 | |
|
| 41 | 0 | BSAccountUserWebSession userWebSession = this.bsAccountMan.getUserWebSession(request); |
| 42 | |
|
| 43 | 0 | String now = (new java.util.Date()).toString(); |
| 44 | |
|
| 45 | 0 | Map<String, Object> myModel = new HashMap<String, Object>(); |
| 46 | 0 | myModel.put("userWebSession", userWebSession); |
| 47 | 0 | myModel.put("now", now); |
| 48 | 0 | myModel.put("picMan", pmf); |
| 49 | 0 | myModel.put("importsToDo", pmf.getDB().getSystem().getImportsToDo()); |
| 50 | |
|
| 51 | 0 | return new ModelAndView("ImportPicsPage", "model", myModel); |
| 52 | |
} |
| 53 | |
|
| 54 | |
|
| 55 | |
} |