Interface FinalizeConnectorCallback
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface FinalizeConnectorCallback
Callback called during theFinalizeConnectorHandler
execution, may be used to provide custom finalization logic (e.g. configuration persistence).Default implementation of this callback calls the
PUBLIC.FINALIZE_CONNECTOR_CONFIGURATION_INTERNAL
procedure.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorResponse
execute(Variant configuration)
Executes logic using the provided configuration.
-
-
-
Method Detail
-
execute
ConnectorResponse execute(Variant configuration)
Executes logic using the provided configuration.- Parameters:
configuration
- custom configuration provided to the handler- Returns:
- a response with the code
OK
if the execution was successful, otherwise a response with an error code and an error message
-
-