Class GeneController
- java.lang.Object
-
- ubic.gemma.web.controller.genome.gene.GeneController
-
@Controller @RequestMapping({"/gene","/g"}) public class GeneController extends Object
- Author:
- daq2101, pavlidis, joseph
-
-
Field Summary
Fields Modifier and Type Field Description protected org.apache.commons.logging.Log
log
protected org.springframework.context.MessageSource
messageSource
protected MessageUtil
messageUtil
-
Constructor Summary
Constructors Constructor Description GeneController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<AnnotationValueObject>
findGOTerms(Long geneId)
Collection<GeneProductValueObject>
getProducts(Long geneId)
org.springframework.web.servlet.ModelAndView
handleRequestInternal(javax.servlet.http.HttpServletRequest request)
GeneValueObject
loadGeneDetails(Long geneId)
org.springframework.web.servlet.ModelAndView
show(javax.servlet.http.HttpServletRequest request)
-
-
-
Field Detail
-
log
protected final org.apache.commons.logging.Log log
-
messageSource
@Autowired protected org.springframework.context.MessageSource messageSource
-
messageUtil
@Autowired protected MessageUtil messageUtil
-
-
Method Detail
-
findGOTerms
public Collection<AnnotationValueObject> findGOTerms(Long geneId)
-
getProducts
public Collection<GeneProductValueObject> getProducts(Long geneId)
-
loadGeneDetails
public GeneValueObject loadGeneDetails(Long geneId)
-
show
@RequestMapping(value={"/showGene.html","/"}, method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView show(javax.servlet.http.HttpServletRequest request)
-
handleRequestInternal
@RequestMapping(value="/downloadGeneList.html", method={GET,HEAD}) public org.springframework.web.servlet.ModelAndView handleRequestInternal(javax.servlet.http.HttpServletRequest request)
-
-