public interface IMetadata extends ServiceInterface
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
MOVIE_MPEG_NS
The name space used to indicate that the
FileAnnotation
is an MPEG file. |
static java.lang.String |
MOVIE_QT_NS
The name space used to indicate that the
FileAnnotation
is an QT file. |
static java.lang.String |
MOVIE_WMV_NS
The name space used to indicate that the
FileAnnotation
is an WMV file. |
static java.lang.String |
NS_IMPORTER_ARCHIVED
The name space indicating that the
Boolean annotation
indicated if an archived image is imported with the image. |
static java.lang.String |
NS_INSIGHT_RATING
The name space indicating that the
Long annotation is
a rating annotation i.e. an integer in the interval [0, 5] . |
static java.lang.String |
NS_INSIGHT_TAG_SET
The name space indicating that the tag is used a tag set.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Long |
countAnnotationsUsedNotOwned(java.lang.Class annotationType,
long userID)
Counts the number of annotation of a given type used by the specified
user but not owned by the user.
|
java.lang.Long |
countSpecifiedAnnotations(java.lang.Class type,
java.util.Set<java.lang.String> include,
java.util.Set<java.lang.String> exclude,
Parameters options)
Counts the number of annotation of a given type.
|
java.util.Map<java.lang.Long,java.lang.Long> |
getTaggedObjectsCount(java.util.Set<java.lang.Long> tagIds,
Parameters options)
Returns a map whose key is a tag's id and the value the number of
Projects, Datasets, and Images linked to that tag.
|
<A extends Annotation> |
loadAnnotation(java.util.Set<java.lang.Long> annotationIds)
Loads the specified annotations.
|
<T extends IObject,A extends Annotation> |
loadAnnotations(java.lang.Class<T> nodeType,
java.util.Set<java.lang.Long> rootNodeIds,
java.util.Set<java.lang.String> annotationType,
java.util.Set<java.lang.Long> annotatorIds,
Parameters options)
Loads all the annotations of given types,
that have been attached to the specified
rootNodes
for the specified annotatorIds . |
java.util.Set<IObject> |
loadAnnotationsUsedNotOwned(java.lang.Class annotationType,
long userID)
Loads the annotations of a given type used by the specified
user but not owned by the user.
|
java.util.Set<LogicalChannel> |
loadChannelAcquisitionData(java.util.Set<java.lang.Long> ids)
Loads the
logical channels and the acquisition metadata
related to them. |
Instrument |
loadInstrument(long id)
Loads the instrument and its components i.e. detectors, objectives, etc.
|
java.util.Map<java.lang.Long,java.util.Set<IObject>> |
loadLogFiles(java.lang.Class<? extends IObject> rootNodeType,
java.util.Set<java.lang.Long> ids)
Find the original file IDs for the import logs corresponding to the given Image or Fileset IDs.
|
<A extends Annotation> |
loadSpecifiedAnnotations(java.lang.Class type,
java.util.Set<java.lang.String> include,
java.util.Set<java.lang.String> exclude,
Parameters options)
Loads all the annotations of a given type.
|
<A extends Annotation> |
loadSpecifiedAnnotationsLinkedTo(java.lang.Class type,
java.util.Set<java.lang.String> include,
java.util.Set<java.lang.String> exclude,
java.lang.Class rootNodeType,
java.util.Set<java.lang.Long> rootNodeIds,
Parameters options)
Loads the annotations of a given type linked to the specified objects.
|
java.util.Map<java.lang.Long,java.util.Set<IObject>> |
loadTagContent(java.util.Set<java.lang.Long> tagIds,
Parameters options)
Loads the Tag Set if the id is specified otherwise loads all the Tag
Set.
|
java.util.Set<IObject> |
loadTagSets(Parameters options)
Loads all the tag Sets.
|
static final java.lang.String NS_INSIGHT_TAG_SET
static final java.lang.String NS_INSIGHT_RATING
Long
annotation is
a rating annotation i.e. an integer in the interval [0, 5]
.static final java.lang.String NS_IMPORTER_ARCHIVED
Boolean
annotation
indicated if an archived image is imported with the image.static final java.lang.String MOVIE_MPEG_NS
FileAnnotation
is an MPEG
file.static final java.lang.String MOVIE_QT_NS
FileAnnotation
is an QT
file.static final java.lang.String MOVIE_WMV_NS
FileAnnotation
is an WMV
file.java.util.Set<LogicalChannel> loadChannelAcquisitionData(java.util.Set<java.lang.Long> ids)
logical channels
and the acquisition metadata
related to them.ids
- The collection of logical channel's ids.
Mustn't be null
.<T extends IObject,A extends Annotation> java.util.Map<java.lang.Long,java.util.Set<A>> loadAnnotations(java.lang.Class<T> nodeType, java.util.Set<java.lang.Long> rootNodeIds, java.util.Set<java.lang.String> annotationType, java.util.Set<java.lang.Long> annotatorIds, Parameters options)
rootNodes
for the specified annotatorIds
.
If no types specified, all annotations will be loaded.
This method looks for the annotations that have been attached to each of
the specified objects. It then maps each rootNodeId
onto
the set of annotations that were found for that node. If no
annotations were found for that node, then the entry will be
null
. Otherwise it will be a Set
containing Annotation
objects.nodeType
- The type of the nodes the annotations are linked to.
Mustn't be null
.rootNodeIds
- Ids of the objects of type rootNodeType
.
Mustn't be null
.annotationType
- The types of annotation to retrieve.
If null
all annotations will be
loaded. String of the type
ome.model.annotations.*
.annotatorIds
- Ids of the users for whom annotations should be
retrieved.
If null
, all annotations returned.options
- Set
of
all annotations for that node or null
.<A extends Annotation> java.util.Set<A> loadSpecifiedAnnotations(java.lang.Class type, java.util.Set<java.lang.String> include, java.util.Set<java.lang.String> exclude, Parameters options)
type
- The type of annotations to load.include
- Include the annotations with the specified name spaces.exclude
- Exclude the annotations with the specified name spaces.options
- The POJO options.java.util.Map<java.lang.Long,java.util.Set<IObject>> loadTagContent(java.util.Set<java.lang.Long> tagIds, Parameters options)
tagIds
- The id of the tag to load or -1
.options
- The POJO options.Tag/Tag Set
and the value
either a Map or a list of related DataObject
.java.util.Set<IObject> loadTagSets(Parameters options)
AnnotationAnnotatioLink
objects and, if the
orphan
parameters is true
, the
TagAnnotation
object.
Note that the difference between a Tag Set and a Tag is made
using the name space NS_INSIGHT_TAG_SET
.options
- The POJO options.java.util.Map<java.lang.Long,java.lang.Long> getTaggedObjectsCount(java.util.Set<java.lang.Long> tagIds, Parameters options)
tagIds
- The collection of ids.options
- The POJO options.java.lang.Long countSpecifiedAnnotations(java.lang.Class type, java.util.Set<java.lang.String> include, java.util.Set<java.lang.String> exclude, Parameters options)
type
- The type of annotations to load.include
- The collection of name space, one of the constants
defined by this class.exclude
- The collection of name space, one of the constants
defined by this class.options
- The POJO options.<A extends Annotation> java.util.Set<A> loadAnnotation(java.util.Set<java.lang.Long> annotationIds)
annotationIds
- The collection of annotation's ids.Instrument loadInstrument(long id)
id
- The id of the instrument to load.java.lang.Long countAnnotationsUsedNotOwned(java.lang.Class annotationType, long userID)
annotationType
- The type of annotations to load.userID
- The identifier of the user.java.util.Set<IObject> loadAnnotationsUsedNotOwned(java.lang.Class annotationType, long userID)
annotationType
- The type of annotations to load.userID
- The identifier of the user.<A extends Annotation> java.util.Map<java.lang.Long,java.util.Set<A>> loadSpecifiedAnnotationsLinkedTo(java.lang.Class type, java.util.Set<java.lang.String> include, java.util.Set<java.lang.String> exclude, java.lang.Class rootNodeType, java.util.Set<java.lang.Long> rootNodeIds, Parameters options)
rootNodeId
onto
the set of annotations that were found for that node. If no
annotations were found for that node, the map will not contain an entry
for that node. Otherwise it will be a Set
containing Annotation
objects.
The rootNodeType
supported are:
Project, Dataset, Image, Pixels, Screen, Plate, PlateAcquisition, Well,
Fileset.type
- The type of annotations to load.include
- Include the annotations with the specified name spaces.exclude
- Exclude the annotations with the specified name spaces.rootNodeType
- The type of objects the annotations are linked to.rootNodeIds
- The identifiers of the objects.options
- The POJO options.
Version: 5.4.4-ice35-b82
Copyright © 2018 The University of Dundee & Open Microscopy Environment. All Rights Reserved.