All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.extras.creaper.commands.datasources.AddMariaDbXADataSource Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package org.wildfly.extras.creaper.commands.datasources;

import org.wildfly.extras.creaper.core.ManagementVersion;

import java.util.HashMap;

import static org.wildfly.extras.creaper.commands.datasources.DatasourceConstants.DEFAULT_BACKGROUND_VALIDATION_TIME;
import static org.wildfly.extras.creaper.commands.datasources.DatasourceConstants.MYSQL_EXCEPTION_SORTER;
import static org.wildfly.extras.creaper.commands.datasources.DatasourceConstants.MYSQL_VALID_CONNECTION_CHECKER;
import static org.wildfly.extras.creaper.commands.datasources.DatasourceConstants.MARIADB_XA_DATASOURCE_CLASS;
/**
 * Creates a Maria DB XA datasource.
 *
 * 

Standard XA datasource properties to use are:

*
    *
  • {@code ServerName}
  • *
  • {@code PortNumber} (if not set, a default of {@code 3306} will be used)
  • *
  • {@code DatabaseName}
  • *
* *

Applies defaults from testing JBoss EAP 7.
* Note: classes for connection checker and exception sorter are the same as for MySQL datasource

*/ public final class AddMariaDbXADataSource extends AddXADataSource { AddMariaDbXADataSource(Builder builder) { super(builder); } @Override protected void modifyIfNeeded(ManagementVersion serverVersion) { if (backgroundValidation == null) backgroundValidation = true; if (backgroundValidationMillis == null) backgroundValidationMillis = DEFAULT_BACKGROUND_VALIDATION_TIME; if (validConnectionCheckerClass == null) validConnectionCheckerClass = MYSQL_VALID_CONNECTION_CHECKER; if (exceptionSorterClass == null) exceptionSorterClass = MYSQL_EXCEPTION_SORTER; if (xaDatasourceClass == null) xaDatasourceClass = MARIADB_XA_DATASOURCE_CLASS; if (xaDatasourceProperties == null) xaDatasourceProperties = new HashMap(); if (!xaDatasourceProperties.containsKey("PortNumber")) xaDatasourceProperties.put("PortNumber", "3306"); } public static final class Builder extends AddXADataSource.Builder { public Builder(String name) { super(name); } public AddMariaDbXADataSource build() { check(); return new AddMariaDbXADataSource(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy