Package com.glyart.asql.bungeecord
Class BungeecordASQLContext.ContextBuilder
- java.lang.Object
-
- com.glyart.asql.bungeecord.BungeecordASQLContext.ContextBuilder
-
- Enclosing class:
- BungeecordASQLContext
public static class BungeecordASQLContext.ContextBuilder extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BungeecordASQLContext
build()
Builds a new BungeecordASQLContext.BungeecordASQLContext.ContextBuilder
setCredentials(com.glyart.asql.common.database.DataSourceCredentials credentials)
Sets the given credentials for connecting to a data source.BungeecordASQLContext.ContextBuilder
setDatabaseHandler(com.glyart.asql.common.database.DataSourceHandler dataSourceHandler)
Sets the handler for the data source interaction.BungeecordASQLContext.ContextBuilder
setPlugin(net.md_5.bungee.api.plugin.Plugin plugin)
Sets the Plugin which created this BungeecordASQLContext.
-
-
-
Method Detail
-
setPlugin
public BungeecordASQLContext.ContextBuilder setPlugin(@NotNull net.md_5.bungee.api.plugin.Plugin plugin)
Sets the Plugin which created this BungeecordASQLContext.- Parameters:
plugin
- the EXISTING Plugin which created this BungeecordASQLContext- Returns:
- This ContextBuilder instance
-
setCredentials
public BungeecordASQLContext.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 BungeecordASQLContext.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 BungeecordASQLContext build()
Builds a new BungeecordASQLContext.- Returns:
- a new instance of BungeecordASQLContext
-
-