Fix problem due to new internal java beans
[proteocache.git] / server / compbio / controllers / HelpController.java
1 package compbio.controllers;
2
3 import java.util.Map;
4
5 import org.springframework.stereotype.Controller;
6 import org.springframework.web.bind.annotation.RequestMapping;
7 import org.springframework.web.bind.annotation.RequestMethod;
8
9 //import org.springframework.web.bind.annotation.RequestParam;
10
11 /**
12  * @author Alexander Sherstnev
13  * @author Natasha Sherstneva
14  */
15 @Controller
16 public class HelpController {
17
18         @RequestMapping(value = "/help/overview", method = RequestMethod.GET)
19         public String formOverviewPage(Map<String, Object> model) {
20                 return "help/Overview";
21         }
22
23         @RequestMapping(value = "/help/howto", method = RequestMethod.GET)
24         public String formHowtoPage(Map<String, Object> model) {
25                 return "support/Notimplemented";
26         }
27
28         @RequestMapping(value = "/help/doc", method = RequestMethod.GET)
29         public String formDocPage(Map<String, Object> model) {
30                 return "support/Notimplemented";
31         }
32
33         @RequestMapping(value = "/help/javadoc", method = RequestMethod.GET)
34         public String formJavadoc(Map<String, Object> model) {
35                 return "support/Notimplemented";
36         }
37 }