Package com.glyart.asql.common.database
Class DataSourceCredentials.DataSourceCredentialsBuilder
- java.lang.Object
-
- com.glyart.asql.common.database.DataSourceCredentials.DataSourceCredentialsBuilder
-
- Enclosing class:
- DataSourceCredentials
public static class DataSourceCredentials.DataSourceCredentialsBuilder extends Object
Represents a builder for creating an instance of DataSourceCredential.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataSourceCredentials
build()
Builds aDataSourceCredentials
object, ready to be passed to aASQLContext
implementation.DataSourceCredentials.DataSourceCredentialsBuilder
setDatabase(String schema)
Sets the initial schema to use after the connection to a data source is successfully established.
This will not provide the creation of the schema if it doesn't exist.DataSourceCredentials.DataSourceCredentialsBuilder
setHostName(String hostName)
Sets the hostname for connecting to a data source.DataSourceCredentials.DataSourceCredentialsBuilder
setPassword(String password)
Sets the password for connecting to a data source.DataSourceCredentials.DataSourceCredentialsBuilder
setPort(int port)
Sets the port for connecting to a data source.DataSourceCredentials.DataSourceCredentialsBuilder
setUsername(String username)
Sets the username for connecting to a data source.
-
-
-
Method Detail
-
setHostName
public DataSourceCredentials.DataSourceCredentialsBuilder setHostName(@NotNull String hostName)
Sets the hostname for connecting to a data source.- Parameters:
hostName
- The hostname of the physical data source- Returns:
- The instance of this builder
-
setPort
public DataSourceCredentials.DataSourceCredentialsBuilder setPort(int port)
Sets the port for connecting to a data source.- Parameters:
port
- The port of the physical data source- Returns:
- The instance of this builder
-
setUsername
public DataSourceCredentials.DataSourceCredentialsBuilder setUsername(@NotNull String username)
Sets the username for connecting to a data source.- Parameters:
username
- The username for the access- Returns:
- The instance of this builder
-
setPassword
public DataSourceCredentials.DataSourceCredentialsBuilder setPassword(@Nullable String password)
Sets the password for connecting to a data source.- Parameters:
password
- The password for the access- Returns:
- The instance of this builder
-
setDatabase
public DataSourceCredentials.DataSourceCredentialsBuilder setDatabase(@Nullable String schema)
Sets the initial schema to use after the connection to a data source is successfully established.
This will not provide the creation of the schema if it doesn't exist.- Parameters:
schema
- An existing database schema- Returns:
- The instance of this builder
-
build
@NotNull public DataSourceCredentials build()
Builds aDataSourceCredentials
object, ready to be passed to aASQLContext
implementation.- Returns:
- A new instance of DataSourceCredentials.
-
-