Package com.glyart.asql.velocity
Class VelocityASQLContext.ContextBuilder
- java.lang.Object
-
- com.glyart.asql.velocity.VelocityASQLContext.ContextBuilder
-
- Enclosing class:
- VelocityASQLContext
public static class VelocityASQLContext.ContextBuilder extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VelocityASQLContext
build()
Builds a new VelocityASQLContext.VelocityASQLContext.ContextBuilder
setCredentials(com.glyart.asql.common.database.DataSourceCredentials credentials)
Sets the given credentials for connecting to a data source.VelocityASQLContext.ContextBuilder
setDatabaseHandler(com.glyart.asql.common.database.DataSourceHandler dataSourceHandler)
Sets the handler for the data source interaction.VelocityASQLContext.ContextBuilder
setLogger(Logger logger)
Sets the Logger that should use this VelocityASQLContextVelocityASQLContext.ContextBuilder
setPlugin(Object plugin)
Sets the Object plugin which created this VelocityASQLContext.VelocityASQLContext.ContextBuilder
setServer(com.velocitypowered.api.proxy.ProxyServer server)
Sets the ProxyServer of this VelocityASQLContext
-
-
-
Method Detail
-
setServer
public VelocityASQLContext.ContextBuilder setServer(@NotNull com.velocitypowered.api.proxy.ProxyServer server)
Sets the ProxyServer of this VelocityASQLContext- Parameters:
server
- The ProxyServer of this Velocity proxy- Returns:
- This ContextBuilder instance
-
setPlugin
public VelocityASQLContext.ContextBuilder setPlugin(@NotNull Object plugin)
Sets the Object plugin which created this VelocityASQLContext.- Parameters:
plugin
- the EXISTING Object plugin which created this VelocityASQLContext- Returns:
- This ContextBuilder instance
-
setLogger
public VelocityASQLContext.ContextBuilder setLogger(@NotNull Logger logger)
Sets the Logger that should use this VelocityASQLContext- Parameters:
logger
- The Logger- Returns:
- This ContextBuilder instance
-
setCredentials
public VelocityASQLContext.ContextBuilder setCredentials(@NotNull com.glyart.asql.common.database.DataSourceCredentials credentials)
Sets the given credentials for connecting to a data source.- Parameters:
credentials
- The credentials for connecting to a data source- Returns:
- This ContextBuilder instance
-
setDatabaseHandler
public VelocityASQLContext.ContextBuilder setDatabaseHandler(@Nullable com.glyart.asql.common.database.DataSourceHandler dataSourceHandler)
Sets the handler for the data source interaction. If it's not provided then a Hikari based default implementation will be used.- Parameters:
dataSourceHandler
- The handler for the data source interaction.- Returns:
- This ContextBuilder instance
- See Also:
DefaultDataSourceHandler
-
build
@NotNull public VelocityASQLContext build()
Builds a new VelocityASQLContext.- Returns:
- a new instance of VelocityASQLContext
-
-