/connect-web/src/main/java/org/osforce/connect/web/module/search/SearchProfileWidget.java

http://focus-sns.googlecode.com/ · Java · 62 lines · 45 code · 10 blank · 7 comment · 0 complexity · 0cdc423658178bbdb13312cd58bd0697 MD5 · raw file

  1. package org.osforce.connect.web.module.search;
  2. import java.util.List;
  3. import org.osforce.connect.entity.profile.Profile;
  4. import org.osforce.connect.entity.system.ProjectCategory;
  5. import org.osforce.connect.entity.system.Site;
  6. import org.osforce.connect.service.search.SearchProfileService;
  7. import org.osforce.connect.service.system.ProjectCategoryService;
  8. import org.osforce.connect.web.AttributeKeys;
  9. import org.osforce.spring4me.dao.Page;
  10. import org.osforce.spring4me.web.bind.annotation.RequestAttr;
  11. import org.osforce.spring4me.web.stereotype.Widget;
  12. import org.springframework.beans.factory.annotation.Autowired;
  13. import org.springframework.ui.Model;
  14. import org.springframework.web.bind.annotation.RequestMapping;
  15. import org.springframework.web.bind.annotation.RequestParam;
  16. /**
  17. *
  18. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  19. * @since 1.1.2
  20. * @create Jun 16, 2011 - 11:39:15 AM
  21. * <a href="http://www.opensourceforce.org">????</a>
  22. */
  23. @Widget
  24. @RequestMapping("/search/profile")
  25. public class SearchProfileWidget {
  26. private ProjectCategoryService categoryService;
  27. private SearchProfileService searchProfileService;
  28. public SearchProfileWidget() {
  29. }
  30. @Autowired
  31. public void setCategoryService(ProjectCategoryService categoryService) {
  32. this.categoryService = categoryService;
  33. }
  34. @Autowired
  35. public void setSearchProfileService(
  36. SearchProfileService searchProfileService) {
  37. this.searchProfileService = searchProfileService;
  38. }
  39. @RequestMapping("/form-view")
  40. public String doFormView(@RequestAttr Site site, Model model) {
  41. List<ProjectCategory> categories = categoryService.getProjectCategoryList(site.getId());
  42. model.addAttribute(AttributeKeys.PROJECT_CATEGORY_LIST_KEY_READABLE, categories);
  43. return "search/profile-form";
  44. }
  45. @RequestMapping(value="/result-view")
  46. public String doResultView(Page<Profile> page, Model model,
  47. @RequestParam String title, @RequestParam Long categoryId) {
  48. page = searchProfileService.searchProfilePage(page, title, categoryId);
  49. model.addAttribute(AttributeKeys.PAGE_KEY_READABLE, page);
  50. return "search/profile-result";
  51. }
  52. }