Uses of Class
org.wildfly.extras.creaper.commands.datasources.AddDataSource.Builder

Packages that use AddDataSource.Builder
org.wildfly.extras.creaper.commands.datasources   
 

Uses of AddDataSource.Builder in org.wildfly.extras.creaper.commands.datasources
 

Subclasses of AddDataSource.Builder in org.wildfly.extras.creaper.commands.datasources
static class AddDb2DataSource.Builder
           
static class AddMssqlDataSource.Builder
           
static class AddMysqlDataSource.Builder
           
static class AddOracleDataSource.Builder
           
static class AddPostgresPlusDataSource.Builder
           
static class AddPostgreSqlDataSource.Builder
           
static class AddSybaseDataSource.Builder
           
 

Methods in org.wildfly.extras.creaper.commands.datasources that return AddDataSource.Builder
 AddDataSource.Builder AddDataSource.Builder.addConnectionProperties(Map<String,String> connectionProperties)
          Adding connection properties in bulk.
 AddDataSource.Builder AddDataSource.Builder.addConnectionProperty(String name, boolean value)
          See addConnectionProperty(String, String)
 AddDataSource.Builder AddDataSource.Builder.addConnectionProperty(String name, String value)
          Adding connection property.
 AddDataSource.Builder AddDataSource.Builder.addExceptionSorterProperty(String name, boolean value)
          Property for exceptionSorterClass
 AddDataSource.Builder AddDataSource.Builder.addExceptionSorterProperty(String name, String value)
          Property for exceptionSorterClass
 AddDataSource.Builder AddDataSource.Builder.addReauthPluginProperty(String name, boolean value)
          Property for reauthPluginClass
 AddDataSource.Builder AddDataSource.Builder.addReauthPluginProperty(String name, String value)
          Property for reauthPluginClass
 AddDataSource.Builder AddDataSource.Builder.addStaleConnectionCheckerProperty(String name, boolean value)
          Property for staleConnectionCheckerClass
 AddDataSource.Builder AddDataSource.Builder.addStaleConnectionCheckerProperty(String name, String value)
          Property for staleConnectionCheckerClass
 AddDataSource.Builder AddDataSource.Builder.addValidConnectionCheckerProperty(String name, boolean value)
          Property for validConnectionCheckerClass
 AddDataSource.Builder AddDataSource.Builder.addValidConnectionCheckerProperty(String name, String value)
          Property for validConnectionCheckerClass
 AddDataSource.Builder AddDataSource.Builder.allocationRetry(Integer allocationRetry)
          The allocation retry element indicates the number of times that allocating a connection should be tried before throwing an exception.
 AddDataSource.Builder AddDataSource.Builder.allocationRetryWaitMillis(Integer allocationRetryWaitMillis)
          The allocation retry wait millis element indicates the time in milliseconds to wait between retrying to allocate a connection
 AddDataSource.Builder AddDataSource.Builder.allowMultipleUsers(Boolean allowMultipleUsers)
          Specifies if multiple users will access the datasource through the getConnection(user, password) method and hence if the internal pool type should account for that
 AddDataSource.Builder AddDataSource.Builder.backgroundValidation(Boolean backgroundValidation)
          Connections should be validated on a background thread (versus being validated prior to use).
 AddDataSource.Builder AddDataSource.Builder.backgroundValidationMillis(Integer backgroundValidationMillis)
          Amount of time that background validation will run.
 AddDataSource.Builder AddDataSource.Builder.blockingTimeoutWaitMillis(Integer blockingTimeoutWaitMillis)
          The blocking-timeout-millis element indicates the maximum time in milliseconds to block while waiting for a connection before throwing an exception.
 AddDataSource.Builder AddDataSource.Builder.checkValidConnectionSql(String checkValidConnectionSql)
          SQL statement to check validity of a pool connection.
 AddDataSource.Builder AddDataSource.Builder.connectable(Boolean connectable)
          Setting this to true will let to use CMR.
 AddDataSource.Builder AddDataSource.Builder.connectionUrl(String connectionUrl)
          Defines the JDBC driver connection URL.
 AddDataSource.Builder AddDataSource.Builder.datasourceClass(String datasourceClass)
          What datasource class will be used for connection.
 AddDataSource.Builder AddDataSource.Builder.driverClass(String driverClass)
          What driver class will be used for connection.
 AddDataSource.Builder AddDataSource.Builder.driverName(String driverName)
          Defines the JDBC driver the datasource should use.
 AddDataSource.Builder AddDataSource.Builder.enableAfterCreate()
          Defines whether the connector should be started on startup.
 AddDataSource.Builder AddDataSource.Builder.exceptionSorterClass(String exceptionSorterClass)
          org.jboss.jca.adapters.jdbc.ExceptionSorter
 AddDataSource.Builder AddDataSource.Builder.flushStrategy(PoolFlushStrategy flushStrategy)
          How poool should be flushed.
 AddDataSource.Builder AddDataSource.Builder.idleTimeoutMinutes(Integer idleTimeoutMinutes)
          The idle-timeout-minutes elements indicates the maximum time in minutes a connection may be idle before being closed.
 AddDataSource.Builder AddDataSource.Builder.jndiName(String jndiName)
          Specifies the JNDI name for the datasource.
 AddDataSource.Builder AddDataSource.Builder.jta(Boolean jta)
          Enable JTA integration.
 AddDataSource.Builder AddDataSource.Builder.maxPoolSize(int maxPoolSize)
          Specifies the maximum number of connections for a pool.
 AddDataSource.Builder AddDataSource.Builder.minPoolSize(int minPoolSize)
          Specifies the minimum number of connections for a pool.
 AddDataSource.Builder AddDataSource.Builder.newConnectionSql(String newConnectionSql)
          SQL statement to execute whenever a connection is added to the JCA connection pool.
 AddDataSource.Builder AddDataSource.Builder.prefill(Boolean prefill)
          Whether to attempt to prefill the connection pool.
 AddDataSource.Builder AddDataSource.Builder.preparedStatementsCacheSize(Integer preparedStatementsCacheSize)
          The number of prepared statements per connection in an LRU cache
 AddDataSource.Builder AddDataSource.Builder.queryTimeout(Integer queryTimeout)
          Any configured query timeout in seconds.
 AddDataSource.Builder AddDataSource.Builder.reauthPluginClass(String reauthPluginClass)
          Setting reauth plugin class name.
 AddDataSource.Builder AddDataSource.Builder.replaceExisting()
          Specify whether to replace the existing datasource based on its name (pool-name).
 AddDataSource.Builder AddDataSource.Builder.securityDomain(String securityDomain)
          Security domain name to be used for authentication to datasource.
 AddDataSource.Builder AddDataSource.Builder.setTxQueryTimeout(Boolean setTxQueryTimeout)
          Whether to set the query timeout based on the time remaining until transaction timeout, any configured query timeout will be used if there is no transaction.
 AddDataSource.Builder AddDataSource.Builder.sharePreparedStatements(Boolean sharePreparedStatements)
          Whether to share prepare statements, i.e.
 AddDataSource.Builder AddDataSource.Builder.spy(Boolean spy)
          An org.jboss.jca.adapters.jdbc.ExceptionSorter.
 AddDataSource.Builder AddDataSource.Builder.staleConnectionCheckerClass(String staleConnectionCheckerClass)
          An org.jboss.jca.adapters.jdbc.StaleConnectionChecker.
 AddDataSource.Builder AddDataSource.Builder.statisticsEnabled(Boolean statisticsEnabled)
          Sets whether runtime statistics are enabled or not.
 AddDataSource.Builder AddDataSource.Builder.trackPreparedStatements(TrackStatementType trackStatements)
          Whether to check for unclosed statements when a connection is returned to the pool and result sets are closed when a statement is closed/return to the prepared statement cache.
 AddDataSource.Builder AddDataSource.Builder.transactionIsolation(TransactionIsolation transactionIsolation)
          Defines isolation level for connections created under this datasource.
 AddDataSource.Builder AddDataSource.Builder.urlDelimiter(String urlDelimiter)
          Specifies the delimeter for URLs in connection-url for HA datasources
 AddDataSource.Builder AddDataSource.Builder.urlSelectorStrategyClass(String urlSelectorStrategyClass)
          A class that implements org.jboss.jca.adapters.jdbc.URLSelectorStrategy
 AddDataSource.Builder AddDataSource.Builder.useCcm(Boolean useCcm)
          Enable the use of a cached connection manager.
 AddDataSource.Builder AddDataSource.Builder.useFastFailAllocation(Boolean useFastFailAllocation)
          Whether fail a connection allocation on the first connection if it is invalid (true) or keep trying until the pool is exhausted of all potential connections (false).
 AddDataSource.Builder AddDataSource.Builder.useJavaContext(Boolean useJavaContext)
          Setting this to false will bind the datasource into global JNDI.
 AddDataSource.Builder AddDataSource.Builder.usernameAndPassword(String username, String password)
          Specify the user name and password used when creating a new connection.
 AddDataSource.Builder AddDataSource.Builder.useStrictMinPoolSize(Boolean useStrictMinPoolSize)
          If the minPoolSize should be considered a strictly.
 AddDataSource.Builder AddDataSource.Builder.useTryLock(Integer useTryLock)
          Any configured timeout for internal locks on the resource adapter objects in seconds.
 AddDataSource.Builder AddDataSource.Builder.validateOnMatch(Boolean validateOnMatch)
          Validation will be done on connection factory attempt to match a managed connection for a given set.
 AddDataSource.Builder AddDataSource.Builder.validConnectionCheckerClass(String validConnectionCheckerClass)
          An org.jboss.jca.adapters.jdbc.ValidConnectionChecker.
 

Constructors in org.wildfly.extras.creaper.commands.datasources with parameters of type AddDataSource.Builder
AddDataSource(AddDataSource.Builder builder)
           
 



Copyright © 2015. All rights reserved.