Class TaxonController


  • @Controller
    @RequestMapping("/taxon")
    public class TaxonController
    extends Object
    • Constructor Detail

      • TaxonController

        public TaxonController()
    • Method Detail

      • showAllTxa

        @RequestMapping("/showAllTaxa.html")
        public org.springframework.web.servlet.ModelAndView showAllTxa()
      • showTaxonById

        @RequestMapping(value="/showTaxon.html",
                        params="id")
        public org.springframework.web.servlet.ModelAndView showTaxonById​(@RequestParam("id")
                                                                          Long id)
      • showTaxonByNcbiId

        @RequestMapping(value="/showTaxon.html",
                        params="ncbiId")
        public org.springframework.web.servlet.ModelAndView showTaxonByNcbiId​(@RequestParam("ncbiId")
                                                                              Integer ncbiId)
      • showTaxonByCommonName

        @RequestMapping(value="/showTaxon.html",
                        params="commonName")
        public org.springframework.web.servlet.ModelAndView showTaxonByCommonName​(@RequestParam("commonName")
                                                                                  String name)
      • showTaxonByScientificName

        @RequestMapping(value="/showTaxon.html",
                        params="scientificName")
        public org.springframework.web.servlet.ModelAndView showTaxonByScientificName​(@RequestParam("scientificName")
                                                                                      String name)