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 SummaryConstructors Constructor Description SfcGatewayHook()
 - 
Method SummaryAll 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.AbstractGatewayModuleHookconfigureDeserializer, configureFunctionFactory, configureSerializer, getHomepagePanels, getRPCHandler, getStatusPanels, initializeScriptManager, notifyLicenseStateChanged
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface com.inductiveautomation.ignition.gateway.model.GatewayModuleHookgetConfigCategories, getConfigOverviewContributor, getConfigPanels, getMountedResourceFolder, getMountPathAlias, getStatusOverviewContributor, initializeResourceTypeAdapterRegistry, isFreeModule, isMakerEditionCompatible, mountRouteHandlers, onMountedResourceRequest, setup, shutdown, startup, updateSystemMap
 
- 
 
- 
- 
- 
Method Detail- 
getpublic static SfcGatewayHook get(GatewayContext context) - Parameters:
- context- the- GatewayContext.
- Returns:
- the SfcGatewayHookinstance.
 
 - 
getStepRegistrypublic abstract GatewayStepRegistry getStepRegistry() - Returns:
- the GatewayStepRegistryto register newStepFactorys with.
 
 - 
getTransitionRegistrypublic abstract GatewayTransitionRegistry getTransitionRegistry() - Returns:
- the GatewayTransitionRegistryto register newTransitionFactorys with.
 
 
- 
 
-