Package com.eduix.genexp.enrichment
Interface EnrichmentContext
-
- All Known Implementing Classes:
DefaultEnrichmentContext
public interface EnrichmentContextAn interface for study element enrichment context.- Author:
- Jarkko Leponiemi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCode()Map<String,Object>getData()Set<String>getFinishedEnrichments()StringgetId()StringgetTrigger()StringgetType()booleanisEmpty()voidsetId(String id)Set the id of the study element
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- the id of the study element
-
setId
void setId(String id)
Set the id of the study element- Parameters:
id-
-
getCode
String getCode()
- Returns:
- the code of the study element
-
getType
String getType()
- Returns:
- the type of the study element
-
getTrigger
String getTrigger()
- Returns:
- the trigger identifier ('initial' or 'update')
-
getFinishedEnrichments
Set<String> getFinishedEnrichments()
- Returns:
- a set of class names of the enrichment services processed with this context
-
isEmpty
boolean isEmpty()
-
-