Interface FactorValueDao
-
- All Superinterfaces:
BaseDao<FactorValue>
,BaseVoEnabledDao<FactorValue,FactorValueValueObject>
,FilteringDao<FactorValue>
,FilteringVoEnabledDao<FactorValue,FactorValueValueObject>
- All Known Implementing Classes:
FactorValueDaoImpl
public interface FactorValueDao extends FilteringVoEnabledDao<FactorValue,FactorValueValueObject>
- See Also:
FactorValue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Collection<FactorValue>
findByValue(String valuePrefix)
Deprecated.Map<Long,Integer>
loadIdsWithNumberOfOldStyleCharacteristics(Set<Long> excludedIds)
Deprecated.FactorValue
loadWithOldStyleCharacteristics(Long id, boolean readOnly)
Deprecated.void
updateIgnoreAcl(FactorValue fv)
Deprecated.do not use this, it is only a workaround to make FV migration faster-
Methods inherited from interface ubic.gemma.persistence.service.BaseDao
countAll, create, create, find, findOrCreate, getElementClass, getIdentifierPropertyName, load, load, loadAll, loadReference, loadReference, remove, remove, remove, save, save, update, update
-
Methods inherited from interface ubic.gemma.persistence.service.BaseVoEnabledDao
loadAllValueObjects, loadValueObject, loadValueObjectById, loadValueObjects, loadValueObjectsByIds
-
Methods inherited from interface ubic.gemma.persistence.service.FilteringDao
count, getFilter, getFilter, getFilter, getFilter, getFilter, getFilter, getFilterableProperties, getFilterablePropertyAllowedValues, getFilterablePropertyDescription, getFilterablePropertyIsUsingSubquery, getFilterablePropertyType, getSort, load, load, loadIds
-
Methods inherited from interface ubic.gemma.persistence.service.FilteringVoEnabledDao
loadValueObjects, loadValueObjects
-
-
-
-
Method Detail
-
findByValue
@Deprecated Collection<FactorValue> findByValue(String valuePrefix)
Deprecated.Locate based on string value of the value.- Parameters:
valuePrefix
- value prefix- Returns:
- collection of factor values
-
loadWithOldStyleCharacteristics
@Deprecated FactorValue loadWithOldStyleCharacteristics(Long id, boolean readOnly)
Deprecated.
-
loadIdsWithNumberOfOldStyleCharacteristics
@Deprecated Map<Long,Integer> loadIdsWithNumberOfOldStyleCharacteristics(Set<Long> excludedIds)
Deprecated.Load all the factor values IDs with their number of old-style characteristics.- Parameters:
excludedIds
- list of excluded IDs
-
updateIgnoreAcl
@Deprecated void updateIgnoreAcl(FactorValue fv)
Deprecated.do not use this, it is only a workaround to make FV migration fasterUpdate a FactorValue without involving ACL advice.
-
-