Class ConnectionConfigurationHandler
- java.lang.Object
-
- com.snowflake.connectors.application.configuration.connection.ConnectionConfigurationHandler
-
public class ConnectionConfigurationHandler extends Object
Handler for the connection configuration process. A new instance of the handler must be created usingthe builder
.
-
-
Field Summary
Fields Modifier and Type Field Description static String
ERROR_TYPE
Error type for the connection configuration failure, used by theConnectorErrorHelper
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConnectionConfigurationHandlerBuilder
builder(Session session)
Returns a new instance ofConnectionConfigurationHandlerBuilder
.static Variant
setConnectionConfiguration(Session session, Variant configuration)
Default handler method for thePUBLIC.SET_CONNECTION_CONFIGURATION
procedure.ConnectorResponse
setConnectionConfiguration(Variant configuration)
Executes the main logic of the handler, with logging usingwithExceptionLogging
.
-
-
-
Field Detail
-
ERROR_TYPE
public static final String ERROR_TYPE
Error type for the connection configuration failure, used by theConnectorErrorHelper
.- See Also:
- Constant Field Values
-
-
Method Detail
-
setConnectionConfiguration
public static Variant setConnectionConfiguration(Session session, Variant configuration)
Default handler method for thePUBLIC.SET_CONNECTION_CONFIGURATION
procedure.- Parameters:
session
- Snowpark session objectconfiguration
- connection configuration properties- Returns:
- a variant representing the
ConnectorResponse
returned bysetConnectionConfiguration
-
builder
public static ConnectionConfigurationHandlerBuilder builder(Session session)
Returns a new instance ofConnectionConfigurationHandlerBuilder
.- Parameters:
session
- Snowpark session object- Returns:
- a new builder instance
-
setConnectionConfiguration
public ConnectorResponse setConnectionConfiguration(Variant configuration)
Executes the main logic of the handler, with logging usingwithExceptionLogging
.The handler logic consists of:
- connector status check
ConnectionConfigurationInputValidator.validate(Variant)
ConnectionConfigurationCallback.execute(Variant)
ConnectionValidator.validate()
- connector status update
- Parameters:
configuration
- connection configuration properties- Returns:
- a response with the code
OK
if the execution was successful, otherwise a response with an error code and an error message
-
-