Interface ResetConfigurationSdkCallback
-
- 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 ResetConfigurationSdkCallback
Sdk callback called during theResetConfigurationHandler
execution, may be used to provide custom reset logic required by the sdk.Default implementation of this callback executes the following statements in one transaction:
- prerequisites update
- connector configuration delete
- connection configuration delete
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorResponse
execute()
Executes custom sdk logic.
-
-
-
Method Detail
-
execute
ConnectorResponse execute()
Executes custom sdk logic.- Returns:
- a response with the code
OK
if the execution was successful, otherwise a response with an error code and an error message
-
-