Interface IProcessingUnitReference
-
- All Known Implementing Classes:
ProcessingUnitReference
public interface IProcessingUnitReferenceDefines the processing unit reference
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetId()Get the idjava.lang.StringgetName()Get the namejava.util.List<com.github.toolarium.processing.unit.dto.Parameter>getParameterList()Get the parameter listjava.lang.Class<? extends com.github.toolarium.processing.unit.IProcessingUnit>getProcessingUnitClass()Get the processing unit class
-
-
-
Method Detail
-
getId
java.lang.String getId()
Get the id- Returns:
- the id
-
getName
java.lang.String getName()
Get the name- Returns:
- the name
-
getProcessingUnitClass
java.lang.Class<? extends com.github.toolarium.processing.unit.IProcessingUnit> getProcessingUnitClass()
Get the processing unit class- Returns:
- the processing unit class
-
getParameterList
java.util.List<com.github.toolarium.processing.unit.dto.Parameter> getParameterList()
Get the parameter list- Returns:
- the parameter list
-
-