Interface BlatResultService
-
- All Superinterfaces:
BaseImmutableService<BlatResult>,BaseReadOnlyService<BlatResult>,BaseService<BlatResult>,BaseVoEnabledService<BlatResult,BlatResultValueObject>
- All Known Implementing Classes:
BlatResultServiceImpl
public interface BlatResultService extends BaseService<BlatResult>, BaseVoEnabledService<BlatResult,BlatResultValueObject>
- Author:
- paul
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<BlatResult>findByBioSequence(BioSequence bioSequence)voidremove(BlatResult blatResult)Removes the given entity from the persistent storage.Collection<BlatResult>thaw(Collection<BlatResult> blatResults)BlatResultthaw(BlatResult blatResult)voidupdate(BlatResult blatResult)Updates the given entity in the persistent storage.-
Methods inherited from interface ubic.gemma.persistence.service.BaseImmutableService
create, create, findOrCreate, remove, remove
-
Methods inherited from interface ubic.gemma.persistence.service.BaseReadOnlyService
countAll, find, findOrFail, getElementClass, load, load, loadAll, loadOrFail, loadOrFail, loadOrFail, loadOrFail
-
Methods inherited from interface ubic.gemma.persistence.service.BaseService
save, save, update
-
Methods inherited from interface ubic.gemma.persistence.service.BaseVoEnabledService
loadAllValueObjects, loadValueObject, loadValueObjectById, loadValueObjects, loadValueObjectsByIds
-
-
-
-
Method Detail
-
findByBioSequence
Collection<BlatResult> findByBioSequence(BioSequence bioSequence)
-
remove
@Secured("GROUP_USER") void remove(BlatResult blatResult)Description copied from interface:BaseImmutableServiceRemoves the given entity from the persistent storage.- Specified by:
removein interfaceBaseImmutableService<BlatResult>- Parameters:
blatResult- the entity to be removed.
-
update
@Secured("GROUP_USER") void update(BlatResult blatResult)Description copied from interface:BaseServiceUpdates the given entity in the persistent storage.- Specified by:
updatein interfaceBaseService<BlatResult>- Parameters:
blatResult- the entity to be updated.
-
thaw
BlatResult thaw(BlatResult blatResult)
-
thaw
Collection<BlatResult> thaw(Collection<BlatResult> blatResults)
-
-