Class ChromosomeServiceImpl
- java.lang.Object
-
- ubic.gemma.persistence.service.AbstractService<Chromosome>
-
- ubic.gemma.persistence.service.genome.ChromosomeServiceImpl
-
- All Implemented Interfaces:
BaseImmutableService<Chromosome>,BaseReadOnlyService<Chromosome>,BaseService<Chromosome>,ChromosomeService
@Service public class ChromosomeServiceImpl extends AbstractService<Chromosome> implements ChromosomeService
Spring Service base class for
ChromosomeService, provides access to all services and entities referenced by this service.- See Also:
ChromosomeService
-
-
Field Summary
-
Fields inherited from class ubic.gemma.persistence.service.AbstractService
log
-
-
Constructor Summary
Constructors Constructor Description ChromosomeServiceImpl(ChromosomeDao chromosomeDao)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<Chromosome>find(String name, Taxon taxon)Locate by name e.g.-
Methods inherited from class ubic.gemma.persistence.service.AbstractService
countAll, create, create, ensureInSession, ensureInSession, find, findOrCreate, findOrFail, getElementClass, load, load, loadAll, loadOrFail, loadOrFail, loadOrFail, loadOrFail, remove, remove, remove, save, save, streamAll, streamAll, update, update
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface ubic.gemma.persistence.service.BaseReadOnlyService
countAll, find, findOrFail, getElementClass, load, load, loadAll, loadOrFail, loadOrFail, loadOrFail, loadOrFail, streamAll, streamAll
-
-
-
-
Constructor Detail
-
ChromosomeServiceImpl
@Autowired public ChromosomeServiceImpl(ChromosomeDao chromosomeDao)
-
-
Method Detail
-
find
@Transactional(readOnly=true) public Collection<Chromosome> find(String name, Taxon taxon)
Description copied from interface:ChromosomeServiceLocate by name e.g. 'X'.- Specified by:
findin interfaceChromosomeService- Parameters:
name- the name to look for, e.g. 'X'taxon- taxon to look at- Returns:
- all matching chromosomes
-
-