Interface BioAssayDimensionService
- All Superinterfaces:
BaseImmutableService<BioAssayDimension>,BaseReadOnlyService<BioAssayDimension>,BaseVoEnabledService<BioAssayDimension,BioAssayDimensionValueObject>
- All Known Implementing Classes:
BioAssayDimensionServiceImpl
public interface BioAssayDimensionService
extends BaseImmutableService<BioAssayDimension>, BaseVoEnabledService<BioAssayDimension,BioAssayDimensionValueObject>
- Author:
- Paul
-
Method Summary
Modifier and TypeMethodDescriptioncreate(BioAssayDimension bioAssayDimension) Creates the given entity in the persistent storage.findByBioAssaysContainingAll(Collection<BioAssay> bioAssays) findOrCreate(BioAssayDimension bioAssayDimension) Does a search for the entity in the persistent storage, and if not found, creates it.voidremove(BioAssayDimension bioAssayDimension) Removes the given entity from the persistent storage.thaw(BioAssayDimension bioAssayDimension) Fully thaw a dimension.thawLite(BioAssayDimension bioAssayDimension) Lightly thaw a dimension.Methods inherited from interface ubic.gemma.persistence.service.BaseImmutableService
create, remove, removeMethods inherited from interface ubic.gemma.persistence.service.BaseReadOnlyService
countAll, find, findOrFail, getElementClass, load, load, loadAll, loadOrFail, loadOrFail, loadOrFail, loadOrFail, loadOrFail, loadOrFail, streamAll, streamAllMethods inherited from interface ubic.gemma.persistence.service.BaseVoEnabledService
loadAllValueObjects, loadValueObject, loadValueObjectById, loadValueObjects, loadValueObjectsByIds
-
Method Details
-
findOrCreate
@Secured("IS_AUTHENTICATED_ANONYMOUSLY") BioAssayDimension findOrCreate(BioAssayDimension bioAssayDimension) Description copied from interface:BaseImmutableServiceDoes a search for the entity in the persistent storage, and if not found, creates it.- Specified by:
findOrCreatein interfaceBaseImmutableService<BioAssayDimension>- Parameters:
bioAssayDimension- the entity to look for, and create if not found.- Returns:
- the entity retrieved from the persistent storage, either found or created.
-
create
@Secured("IS_AUTHENTICATED_ANONYMOUSLY") BioAssayDimension create(BioAssayDimension bioAssayDimension) Description copied from interface:BaseImmutableServiceCreates the given entity in the persistent storage.- Specified by:
createin interfaceBaseImmutableService<BioAssayDimension>- Parameters:
bioAssayDimension- the entity to be created.- Returns:
- object referencing the persistent instance of the given entity.
-
findByBioAssaysContainingAll
@Secured("IS_AUTHENTICATED_ANONYMOUSLY") Collection<BioAssayDimension> findByBioAssaysContainingAll(Collection<BioAssay> bioAssays) -
remove
Description copied from interface:BaseImmutableServiceRemoves the given entity from the persistent storage.- Specified by:
removein interfaceBaseImmutableService<BioAssayDimension>- Parameters:
bioAssayDimension- the entity to be removed.
-
thawLite
Lightly thaw a dimension.Only the collection of bioassays is thawed.
-
thaw
Fully thaw a dimension.Each assay is thawed with
Thaws.thawBioAssay(ubic.gemma.model.expression.bioAssay.BioAssay).
-