Interface CharacteristicService
-
- All Superinterfaces:
BaseImmutableService<Characteristic>
,BaseReadOnlyService<Characteristic>
,BaseService<Characteristic>
,BaseVoEnabledService<Characteristic,CharacteristicValueObject>
- All Known Implementing Classes:
CharacteristicServiceImpl
public interface CharacteristicService extends BaseService<Characteristic>, BaseVoEnabledService<Characteristic,CharacteristicValueObject>
- Author:
- paul
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Characteristic>
browse(int start, int limit)
Browse through the characteristics, excluding GO annotations.List<Characteristic>
browse(int start, int limit, String sortField, boolean descending)
Browse through the characteristics, excluding GO annotations.Map<String,Long>
countCharacteristicsByValueUri(Collection<String> uris)
Characteristic
create(Characteristic c)
Creates the given entity in the persistent storage.Characteristic
findBestByUri(String uri)
Find the best possible characteristic for a given URI.Collection<? extends Characteristic>
findByCategory(String queryPrefix)
Collection<Characteristic>
findByUri(String searchString)
Looks for an exact match of the give string to a valueUri in the characteristic databaseCollection<Characteristic>
findByUri(Collection<String> uris)
given a collection of strings that represent URI's will find all the characteristics that are used in the system with URI's matching anyone in the given collectionCollection<Characteristic>
findByValue(String search)
Returns a collection of characteristics that have a Value that match the given search string.Map<String,Characteristic>
findCharacteristicsByValueUriOrValueLike(String search)
Map<Class<? extends Identifiable>,Map<String,Set<ExpressionExperiment>>>
findExperimentsByUris(Collection<String> uris, Taxon taxon, int limit, boolean loadEEs, boolean rankByLevel)
Filter
getFilter(String property, Filter.Operator operator, String value)
Filter
getFilter(String property, Filter.Operator operator, Collection<String> values)
Set<String>
getFilterableProperties()
String
getFilterablePropertyDescription(String property)
Class<?>
getFilterablePropertyType(String property)
Map<Characteristic,Identifiable>
getParents(Collection<Characteristic> characteristics, Collection<Class<?>> parentClasses, int maxResults)
Sort
getSort(String property, Sort.Direction direction)
void
remove(Long id)
Removes the entity with given ID from the persistent storage.void
remove(Characteristic c)
Removes the given entity from the persistent storage.-
Methods inherited from interface ubic.gemma.persistence.service.BaseImmutableService
create, findOrCreate, remove
-
Methods inherited from interface ubic.gemma.persistence.service.BaseReadOnlyService
countAll, find, findOrFail, getElementClass, load, load, loadAll, loadOrFail, loadOrFail, loadOrFail
-
Methods inherited from interface ubic.gemma.persistence.service.BaseService
save, save, update, update
-
Methods inherited from interface ubic.gemma.persistence.service.BaseVoEnabledService
loadAllValueObjects, loadValueObject, loadValueObjectById, loadValueObjects, loadValueObjectsByIds
-
-
-
-
Method Detail
-
browse
List<Characteristic> browse(int start, int limit)
Browse through the characteristics, excluding GO annotations.- Parameters:
start
- How far into the list to startlimit
- Maximum records to retrieve- Returns:
- characteristics
-
browse
List<Characteristic> browse(int start, int limit, String sortField, boolean descending)
Browse through the characteristics, excluding GO annotations.- Parameters:
start
- How far into the list to startlimit
- Maximum records to retrievesortField
- sort fielddescending
- sor order- Returns:
- characteristics
-
findExperimentsByUris
Map<Class<? extends Identifiable>,Map<String,Set<ExpressionExperiment>>> findExperimentsByUris(Collection<String> uris, @Nullable Taxon taxon, int limit, boolean loadEEs, boolean rankByLevel)
-
findByUri
Collection<Characteristic> findByUri(Collection<String> uris)
given a collection of strings that represent URI's will find all the characteristics that are used in the system with URI's matching anyone in the given collection- Parameters:
uris
- uris- Returns:
- characteristics
-
findByUri
Collection<Characteristic> findByUri(String searchString)
Looks for an exact match of the give string to a valueUri in the characteristic database- Parameters:
searchString
- search string- Returns:
- characteristics
-
findBestByUri
@Nullable Characteristic findBestByUri(String uri)
Find the best possible characteristic for a given URI.
-
findByValue
Collection<Characteristic> findByValue(String search)
Returns a collection of characteristics that have a Value that match the given search string. The value is usually a human readable form of the termURI- Parameters:
search
- search- Returns:
- characteristics
-
findCharacteristicsByValueUriOrValueLike
Map<String,Characteristic> findCharacteristicsByValueUriOrValueLike(String search)
-
countCharacteristicsByValueUri
Map<String,Long> countCharacteristicsByValueUri(Collection<String> uris)
-
getParents
@Secured({"IS_AUTHENTICATED_ANONYMOUSLY","AFTER_ACL_MAP_VALUES_READ"}) Map<Characteristic,Identifiable> getParents(Collection<Characteristic> characteristics, @Nullable Collection<Class<?>> parentClasses, int maxResults)
- Parameters:
characteristics
- characteristics- Returns:
- a map of the specified characteristics to their annotated objects.
-
findByCategory
Collection<? extends Characteristic> findByCategory(String queryPrefix)
-
create
@Secured("GROUP_USER") Characteristic create(Characteristic c)
Description copied from interface:BaseImmutableService
Creates the given entity in the persistent storage.- Specified by:
create
in interfaceBaseImmutableService<Characteristic>
- Parameters:
c
- the entity to be created.- Returns:
- object referencing the persistent instance of the given entity.
-
remove
@Secured("GROUP_ADMIN") void remove(Long id)
Description copied from interface:BaseImmutableService
Removes the entity with given ID from the persistent storage.- Specified by:
remove
in interfaceBaseImmutableService<Characteristic>
- Parameters:
id
- the ID of entity to be removed.
-
remove
@Secured("GROUP_USER") void remove(Characteristic c)
Description copied from interface:BaseImmutableService
Removes the given entity from the persistent storage.- Specified by:
remove
in interfaceBaseImmutableService<Characteristic>
- Parameters:
c
- the entity to be removed.
-
getFilterableProperties
Set<String> getFilterableProperties()
- See Also:
FilteringDao.getFilterableProperties()
-
getFilterablePropertyDescription
@Nullable String getFilterablePropertyDescription(String property)
-
getFilter
Filter getFilter(String property, Filter.Operator operator, String value) throws IllegalArgumentException
- Throws:
IllegalArgumentException
- See Also:
FilteringDao.getFilterableProperties()
-
getFilter
Filter getFilter(String property, Filter.Operator operator, Collection<String> values) throws IllegalArgumentException
-
getSort
Sort getSort(String property, @Nullable Sort.Direction direction) throws IllegalArgumentException
- Throws:
IllegalArgumentException
- See Also:
FilteringDao.getSort(String, Sort.Direction)
-
-