Package com.inductiveautomation.sfc.api
Class SfcGatewayHook
- java.lang.Object
 - 
- com.inductiveautomation.ignition.gateway.model.AbstractGatewayModuleHook
 - 
- com.inductiveautomation.sfc.api.SfcGatewayHook
 
 
 
- 
- All Implemented Interfaces:
 GatewayModuleHook
public abstract class SfcGatewayHook extends AbstractGatewayModuleHook
This is the entry-point to the Gateway scope section of the SFC module's API.To register a new step, see
getStepRegistry().To register a new transition, see
getTransitionRegistry(). 
- 
- 
Constructor Summary
Constructors Constructor Description SfcGatewayHook() 
- 
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static SfcGatewayHookget(GatewayContext context)abstract GatewayStepRegistrygetStepRegistry()abstract GatewayTransitionRegistrygetTransitionRegistry()- 
Methods inherited from class com.inductiveautomation.ignition.gateway.model.AbstractGatewayModuleHook
configureDeserializer, configureFunctionFactory, configureSerializer, getHomepagePanels, getRPCHandler, getStatusPanels, initializeScriptManager, notifyLicenseStateChanged 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface com.inductiveautomation.ignition.gateway.model.GatewayModuleHook
getConfigCategories, getConfigOverviewContributor, getConfigPanels, getMountedResourceFolder, getMountPathAlias, getStatusOverviewContributor, initializeResourceTypeAdapterRegistry, isFreeModule, isMakerEditionCompatible, mountRouteHandlers, onMountedResourceRequest, setup, shutdown, startup, updateSystemMap 
 - 
 
 - 
 
- 
- 
Method Detail
- 
get
public static SfcGatewayHook get(GatewayContext context)
- Parameters:
 context- theGatewayContext.- Returns:
 - the 
SfcGatewayHookinstance. 
 
- 
getStepRegistry
public abstract GatewayStepRegistry getStepRegistry()
- Returns:
 - the 
GatewayStepRegistryto register newStepFactorys with. 
 
- 
getTransitionRegistry
public abstract GatewayTransitionRegistry getTransitionRegistry()
- Returns:
 - the 
GatewayTransitionRegistryto register newTransitionFactorys with. 
 
 - 
 
 -