Class AbstractGatewayModuleHook

  • All Implemented Interfaces:
    GatewayModuleHook
    Direct Known Subclasses:
    ReportingGatewayHook, SfcGatewayHook, TagHistorianGatewayHook

    public abstract class AbstractGatewayModuleHook
    extends java.lang.Object
    implements GatewayModuleHook

    Base class for all gateway module hook implementations. All methods are given empty implementations. It is expected that subclasses will override any methods that they wish to give real implementations.

    Best practice is to subclass this class rather than implement GatewayModuleHook directly, so that when new methods get added to the interface, your module automatically inherits an empty implementation of the new method rather than breaking with a NoSuchMethodError.