Class TaxonController
java.lang.Object
ubic.gemma.web.controller.expression.experiment.TaxonController
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.web.servlet.ModelAndView
org.springframework.web.servlet.ModelAndView
showTaxonByCommonName
(String name) org.springframework.web.servlet.ModelAndView
showTaxonById
(Long id) org.springframework.web.servlet.ModelAndView
showTaxonByNcbiId
(Integer ncbiId) org.springframework.web.servlet.ModelAndView
-
Constructor Details
-
TaxonController
public TaxonController()
-
-
Method Details
-
showAllTxa
@RequestMapping(value="/showAllTaxa.html", method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView showAllTxa() -
showTaxonById
@RequestMapping(value="/showTaxon.html", params="id", method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView showTaxonById(@RequestParam("id") Long id) -
showTaxonByNcbiId
@RequestMapping(value="/showTaxon.html", params="ncbiId", method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView showTaxonByNcbiId(@RequestParam("ncbiId") Integer ncbiId) -
showTaxonByCommonName
@RequestMapping(value="/showTaxon.html", params="commonName", method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView showTaxonByCommonName(@RequestParam("commonName") String name) -
showTaxonByScientificName
@RequestMapping(value="/showTaxon.html", params="scientificName", method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView showTaxonByScientificName(@RequestParam("scientificName") String name)
-