Class BioAssayDaoImpl
java.lang.Object
ubic.gemma.persistence.service.AbstractDao<BioAssay>
ubic.gemma.persistence.service.AbstractVoEnabledDao<BioAssay,BioAssayValueObject>
ubic.gemma.persistence.service.AbstractNoopFilteringVoEnabledDao<BioAssay,BioAssayValueObject>
ubic.gemma.persistence.service.expression.bioAssay.BioAssayDaoImpl
- All Implemented Interfaces:
BaseDao<BioAssay>,BaseVoEnabledDao<BioAssay,,BioAssayValueObject> BioAssayDao,FilteringDao<BioAssay>,FilteringVoEnabledDao<BioAssay,BioAssayValueObject>
@Repository
public class BioAssayDaoImpl
extends AbstractNoopFilteringVoEnabledDao<BioAssay,BioAssayValueObject>
implements BioAssayDao
- Author:
- pavlidis
-
Field Summary
Fields inherited from class ubic.gemma.persistence.service.AbstractVoEnabledDao
REPORT_SLOW_QUERY_AFTER_MSFields inherited from class ubic.gemma.persistence.service.AbstractDao
log -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected BioAssayValueObjectdoLoadValueObject(BioAssay entity) Load a value object for a given entity.Does a look up for the given entity in the persistent storage, usually looking for a specific identifier ( either id or a string property).findBioAssayDimensions(BioAssay bioAssay) findByAccession(String accession) findByShortName(String shortName) getBioAssaySets(BioAssay bioAssay) loadValueObjects(Collection<BioAssay> entities, Map<ArrayDesign, ArrayDesignValueObject> ad2vo, Map<BioAssay, BioAssay> assay2sourceAssayMap, boolean basic, boolean allFactorValues) Methods inherited from class ubic.gemma.persistence.service.AbstractNoopFilteringVoEnabledDao
count, getFilter, getFilter, getFilter, getFilter, getFilter, getFilter, getFilterableProperties, getFilterablePropertyAllowedValues, getFilterablePropertyDescription, getFilterablePropertyType, getSort, isFilterablePropertyDeprecated, isFilterablePropertyUsingSubquery, load, load, loadIds, loadValueObjects, loadValueObjectsMethods inherited from class ubic.gemma.persistence.service.AbstractVoEnabledDao
doLoadValueObjects, loadAllValueObjects, loadValueObject, loadValueObjectById, loadValueObjects, loadValueObjectsByIds, postProcessValueObjectsMethods inherited from class ubic.gemma.persistence.service.AbstractDao
countAll, create, create, findByProperty, findByPropertyIn, findOneByProperty, findOrCreate, getBatchSize, getElementClass, getEntityName, getIdentifierPropertyName, getSessionFactory, load, load, loadAll, loadReference, loadReference, reload, reload, remove, remove, remove, save, save, streamAll, streamAll, streamQuery, update, updateMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ubic.gemma.persistence.service.BaseDao
countAll, create, create, findOrCreate, getElementClass, load, load, loadAll, loadReference, loadReference, reload, reload, remove, remove, remove, save, save, streamAll, streamAll, update, updateMethods inherited from interface ubic.gemma.persistence.service.BaseVoEnabledDao
loadAllValueObjects, loadValueObject, loadValueObjectById, loadValueObjects, loadValueObjectsByIdsMethods inherited from interface ubic.gemma.persistence.service.FilteringDao
count, getFilter, getFilter, getFilter, getFilter, getFilter, getFilter, getFilterableProperties, getFilterablePropertyAllowedValues, getFilterablePropertyDescription, getFilterablePropertyType, getSort, isFilterablePropertyDeprecated, isFilterablePropertyUsingSubquery, load, load, loadIdsMethods inherited from interface ubic.gemma.persistence.service.FilteringVoEnabledDao
loadValueObjects, loadValueObjects
-
Constructor Details
-
BioAssayDaoImpl
-
-
Method Details
-
find
Description copied from interface:BaseDaoDoes a look up for the given entity in the persistent storage, usually looking for a specific identifier ( either id or a string property). -
findByShortName
- Specified by:
findByShortNamein interfaceBioAssayDao
-
findBioAssayDimensions
- Specified by:
findBioAssayDimensionsin interfaceBioAssayDao
-
findByAccession
- Specified by:
findByAccessionin interfaceBioAssayDao
-
getBioAssaySets
- Specified by:
getBioAssaySetsin interfaceBioAssayDao
-
loadValueObjects
public List<BioAssayValueObject> loadValueObjects(Collection<BioAssay> entities, @Nullable Map<ArrayDesign, ArrayDesignValueObject> ad2vo, @Nullable Map<BioAssay, BioAssay> assay2sourceAssayMap, boolean basic, boolean allFactorValues) - Specified by:
loadValueObjectsin interfaceBioAssayDao- See Also:
-
doLoadValueObject
Description copied from class:AbstractVoEnabledDaoLoad a value object for a given entity.This should be fast and efficient, and avoid any database query or post-processing. If you need to perform additional queries, implement
AbstractVoEnabledDao.postProcessValueObjects(List)instead.- Specified by:
doLoadValueObjectin classAbstractVoEnabledDao<BioAssay,BioAssayValueObject>
-