package compbio.controllers; import java.util.Map; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; //import org.springframework.web.bind.annotation.RequestParam; /** * @author Alexander Sherstnev * @author Natasha Sherstneva */ @Controller public class DocumentationController extends BasicController { @RequestMapping(value = "/help/overview", method = RequestMethod.GET) public String formOverviewPage(Map model) { model.put("username", getPrincipalName()); return "help/Overview"; } @RequestMapping(value = "/help/howto", method = RequestMethod.GET) public String formHowtoPage(Map model) { model.put("username", getPrincipalName()); return "support/Notimplemented"; } @RequestMapping(value = "/help/doc", method = RequestMethod.GET) public String formDocPage(Map model) { model.put("username", getPrincipalName()); return "support/Notimplemented"; } @RequestMapping(value = "/help/javadoc", method = RequestMethod.GET) public String formJavadoc(Map model) { model.put("username", getPrincipalName()); return "support/Notimplemented"; } }