Interface PubMedQueryController
-
- All Known Implementing Classes:
PubMedQueryControllerImpl
@Controller("/bibRefSearch.html") public interface PubMedQueryController
Note: do not use parameterized collections as parameters for ajax methods in this class! Type information is lost during proxy creation so DWR can't figure out what type of collection the method should take. See bug 2756. Use arrays instead.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getView()
ModelAndView
onSubmit(javax.servlet.http.HttpServletRequest request, PubMedSearchCommand command, BindingResult result, SessionStatus status)
-
-
-
Method Detail
-
getView
@RequestMapping(method=GET) String getView()
-
onSubmit
@RequestMapping(method=POST) ModelAndView onSubmit(javax.servlet.http.HttpServletRequest request, PubMedSearchCommand command, BindingResult result, SessionStatus status) throws Exception
- Throws:
Exception
-
-