Class GatewayStepRegistry
java.lang.Object
com.inductiveautomation.sfc.api.elements.GatewayStepRegistry
- All Implemented Interfaces:
- StepRegistry
Keeps track of registered 
StepFactorys.
 
 You can get an instance of this class via: GatewayStepRegistry.get().
- 
Method SummaryModifier and TypeMethodDescriptionstatic GatewayStepRegistryget()com.google.common.base.Optional<StepFactory>getStepFactory(String id) Get theStepFactoryidentified byid.voidregister(StepFactory factory) Register aStepFactory.voidunregister(StepFactory factory) Unregister aStepFactory.
- 
Method Details- 
get- Returns:
- the GatewayStepRegistrysingleton.
 
- 
registerRegister aStepFactory.- Parameters:
- factory- the- StepFactoryto register.
 
- 
unregisterUnregister aStepFactory.- Parameters:
- factory- the- StepFactoryto unregister.
 
- 
getStepFactoryGet theStepFactoryidentified byid.- Specified by:
- getStepFactoryin interface- StepRegistry
- Parameters:
- id- the id of the factory to get.
- Returns:
- the StepFactoryidentified byid.
 
 
-