Package org.vast.sensorML
Interface IProcessFactory
- All Known Subinterfaces:
 IProcessingManager
- All Known Implementing Classes:
 ProcessLoader
public interface IProcessFactory
Interface for factories used to lookup and instantiate specific process implementation for use in executable processing chains
- Since:
 - May 16, 2017
 
- 
Method Summary
Modifier and TypeMethodDescriptionloadProcess(String uri) Loads the executable process implementation corresponding to the given URI. 
- 
Method Details
- 
loadProcess
Loads the executable process implementation corresponding to the given URI.- Parameters:
 uri- URI of the method (i.e. the specific process to instantiate)- Returns:
 - the newly created process object
 - Throws:
 ProcessException- if the process cannot be instantiated (e.g. unknown URI)
 
 -