Tabnine Logo
Extension.getConfigPropertiesMap
Code IndexAdd Tabnine to your IDE (free)

How to use
getConfigPropertiesMap
method
in
org.jboss.jca.common.api.metadata.common.Extension

Best Java code snippets using org.jboss.jca.common.api.metadata.common.Extension.getConfigPropertiesMap (Showing top 20 results out of 315)

origin: wildfly/wildfly

  managedConnectionFactory.setValidConnectionCheckerClassName(validConnectionChecker.getClassName());
if (validConnectionChecker.getConfigPropertiesMap() != null) {
  managedConnectionFactory
      .setValidConnectionCheckerProperties(buildConfigPropsString(validConnectionChecker
          .getConfigPropertiesMap()));
  managedConnectionFactory.setExceptionSorterClassName(exceptionSorter.getClassName());
if (exceptionSorter.getConfigPropertiesMap() != null) {
  managedConnectionFactory.setExceptionSorterProperties(buildConfigPropsString(exceptionSorter
      .getConfigPropertiesMap()));
  managedConnectionFactory.setStaleConnectionCheckerClassName(staleConnectionChecker.getClassName());
if (staleConnectionChecker.getConfigPropertiesMap() != null) {
  managedConnectionFactory
      .setStaleConnectionCheckerProperties(buildConfigPropsString(staleConnectionChecker
          .getConfigPropertiesMap()));
origin: wildfly/wildfly

final Map<String, String> propertiesMap = pool.getCapacity().getIncrementer().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = pool.getCapacity().getDecrementer().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getSecurity().getReauthPlugin().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getExceptionSorter().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getStaleConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getValidConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = ((DsPool) pool).getConnectionListener().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
origin: wildfly/wildfly

  if (pool.getCapacity().getIncrementer() != null) {
    setAttribute(model, CAPACITY_INCREMENTER_CLASS, pool.getCapacity().getIncrementer().getClassName());
    if (pool.getCapacity().getIncrementer().getConfigPropertiesMap() != null) {
      for (Map.Entry<String, String> config : pool.getCapacity().getIncrementer().getConfigPropertiesMap().entrySet()) {
        model.get(CAPACITY_INCREMENTER_PROPERTIES.getName(), config.getKey()).set(config.getValue());
    if (pool.getCapacity().getDecrementer().getConfigPropertiesMap() != null) {
      for (Map.Entry<String, String> config : pool.getCapacity().getDecrementer().getConfigPropertiesMap().entrySet()) {
        model.get(CAPACITY_DECREMENTER_PROPERTIES.getName(), config.getKey()).set(config.getValue());
if (recoverPlugin != null) {
  setAttribute(model, RECOVERLUGIN_CLASSNAME, recoverPlugin.getClassName());
  if (recoverPlugin.getConfigPropertiesMap() != null) {
    for (Map.Entry<String, String> config : recoverPlugin.getConfigPropertiesMap().entrySet()) {
      model.get(RECOVERLUGIN_PROPERTIES.getName(), config.getKey()).set(config.getValue());
origin: wildfly/wildfly

final Map<String, String> propertiesMap = pool.getCapacity().getIncrementer().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = pool.getCapacity().getDecrementer().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getRecovery().getRecoverPlugin().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getExceptionSorter().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getStaleConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getValidConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getSecurity().getReauthPlugin().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = ((DsXaPool) pool).getConnectionListener().getConfigPropertiesMap();
origin: org.jboss.ironjacamar/ironjacamar-common-api

sb.append(">");
if (incrementer.getConfigPropertiesMap().size() > 0)
 Iterator<Map.Entry<String, String>> it = incrementer.getConfigPropertiesMap().entrySet().iterator();
sb.append(">");
if (decrementer.getConfigPropertiesMap().size() > 0)
 Iterator<Map.Entry<String, String>> it = decrementer.getConfigPropertiesMap().entrySet().iterator();
origin: org.jboss.ironjacamar/ironjacamar-common-api

sb.append(">");
if (recoverPlugin.getConfigPropertiesMap().size() > 0)
 Iterator<Map.Entry<String, String>> it = recoverPlugin.getConfigPropertiesMap().entrySet().iterator();
origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

sb.append(">");
if (getReauthPlugin().getConfigPropertiesMap().size() > 0)
 Iterator<Map.Entry<String, String>> it = getReauthPlugin().getConfigPropertiesMap().entrySet().iterator();
origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

sb.append(">");
if (connectionListener.getConfigPropertiesMap().size() > 0)
 Iterator<Map.Entry<String, String>> it = connectionListener.getConfigPropertiesMap().entrySet().iterator();
origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

sb.append(">");
if (validConnectionChecker.getConfigPropertiesMap().size() > 0)
   validConnectionChecker.getConfigPropertiesMap().entrySet().iterator();
sb.append(">");
if (staleConnectionChecker.getConfigPropertiesMap().size() > 0)
   staleConnectionChecker.getConfigPropertiesMap().entrySet().iterator();
sb.append(">");
if (exceptionSorter.getConfigPropertiesMap().size() > 0)
   exceptionSorter.getConfigPropertiesMap().entrySet().iterator();
origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

sb.append(">");
if (connectionListener.getConfigPropertiesMap().size() > 0)
 Iterator<Map.Entry<String, String>> it = connectionListener.getConfigPropertiesMap().entrySet().iterator();
origin: org.jboss.ironjacamar/ironjacamar-core-impl

if (metadata.getIncrementer().getConfigPropertiesMap().size() > 0)
  Map<String, String> properties = metadata.getIncrementer().getConfigPropertiesMap();
  for (Map.Entry<String, String> property : properties.entrySet())
  if (metadata.getDecrementer().getConfigPropertiesMap().size() > 0)
   Map<String, String> properties = metadata.getDecrementer().getConfigPropertiesMap();
   for (Map.Entry<String, String> property : properties.entrySet())
  if (metadata.getDecrementer().getConfigPropertiesMap().size() > 0)
   Map<String, String> properties = metadata.getDecrementer().getConfigPropertiesMap();
   for (Map.Entry<String, String> property : properties.entrySet())
origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

.getConfigPropertiesMap().entrySet())
.getConfigPropertiesMap().entrySet())
.getConfigPropertiesMap().entrySet())
origin: org.jboss.eap/wildfly-connector

  managedConnectionFactory.setValidConnectionCheckerClassName(validConnectionChecker.getClassName());
if (validConnectionChecker.getConfigPropertiesMap() != null) {
  managedConnectionFactory
      .setValidConnectionCheckerProperties(buildConfigPropsString(validConnectionChecker
          .getConfigPropertiesMap()));
  managedConnectionFactory.setExceptionSorterClassName(exceptionSorter.getClassName());
if (exceptionSorter.getConfigPropertiesMap() != null) {
  managedConnectionFactory.setExceptionSorterProperties(buildConfigPropsString(exceptionSorter
      .getConfigPropertiesMap()));
  managedConnectionFactory.setStaleConnectionCheckerClassName(staleConnectionChecker.getClassName());
if (staleConnectionChecker.getConfigPropertiesMap() != null) {
  managedConnectionFactory
      .setStaleConnectionCheckerProperties(buildConfigPropsString(staleConnectionChecker
          .getConfigPropertiesMap()));
origin: org.jboss.as/jboss-as-connector

  managedConnectionFactory.setValidConnectionCheckerClassName(validConnectionChecker.getClassName());
if (validConnectionChecker.getConfigPropertiesMap() != null) {
  managedConnectionFactory
      .setValidConnectionCheckerProperties(buildConfigPropsString(validConnectionChecker
          .getConfigPropertiesMap()));
  managedConnectionFactory.setExceptionSorterClassName(exceptionSorter.getClassName());
if (exceptionSorter.getConfigPropertiesMap() != null) {
  managedConnectionFactory.setExceptionSorterProperties(buildConfigPropsString(exceptionSorter
      .getConfigPropertiesMap()));
  managedConnectionFactory.setStaleConnectionCheckerClassName(staleConnectionChecker.getClassName());
if (staleConnectionChecker.getConfigPropertiesMap() != null) {
  managedConnectionFactory
      .setStaleConnectionCheckerProperties(buildConfigPropsString(staleConnectionChecker
          .getConfigPropertiesMap()));
origin: org.jboss.eap/wildfly-connector

final Map<String, String> propertiesMap = pool.getCapacity().getIncrementer().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = pool.getCapacity().getDecrementer().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getSecurity().getReauthPlugin().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getExceptionSorter().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getStaleConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getValidConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = ((DsPool) pool).getConnectionListener().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
origin: org.jboss.as/jboss-as-connector

  return;
final Map<String, String> propertiesMap = dataSource.getSecurity().getReauthPlugin().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getExceptionSorter().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getStaleConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getValidConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
origin: org.jboss.as/jboss-as-connector

final Map<String, String> propertiesMap = dataSource.getRecovery().getRecoverPlugin().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getExceptionSorter().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getStaleConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getValidConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
  return;
final Map<String, String> propertiesMap = dataSource.getSecurity().getReauthPlugin().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
origin: org.jboss.eap/wildfly-connector

final Map<String, String> propertiesMap = pool.getCapacity().getIncrementer().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = pool.getCapacity().getDecrementer().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getRecovery().getRecoverPlugin().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getExceptionSorter().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getStaleConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getValidation().getValidConnectionChecker().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = dataSource.getSecurity().getReauthPlugin().getConfigPropertiesMap();
if (propertiesMap == null) {
  return;
final Map<String, String> propertiesMap = ((DsXaPool) pool).getConnectionListener().getConfigPropertiesMap();
origin: org.jboss.eap/wildfly-connector

  if (pool.getCapacity().getIncrementer() != null) {
    setAttribute(model, CAPACITY_INCREMENTER_CLASS, pool.getCapacity().getIncrementer().getClassName());
    if (pool.getCapacity().getIncrementer().getConfigPropertiesMap() != null) {
      for (Map.Entry<String, String> config : pool.getCapacity().getIncrementer().getConfigPropertiesMap().entrySet()) {
        model.get(CAPACITY_INCREMENTER_PROPERTIES.getName(), config.getKey()).set(config.getValue());
    if (pool.getCapacity().getDecrementer().getConfigPropertiesMap() != null) {
      for (Map.Entry<String, String> config : pool.getCapacity().getDecrementer().getConfigPropertiesMap().entrySet()) {
        model.get(CAPACITY_DECREMENTER_PROPERTIES.getName(), config.getKey()).set(config.getValue());
if (recoverPlugin != null) {
  setAttribute(model, RECOVERLUGIN_CLASSNAME, recoverPlugin.getClassName());
  if (recoverPlugin.getConfigPropertiesMap() != null) {
    for (Map.Entry<String, String> config : recoverPlugin.getConfigPropertiesMap().entrySet()) {
      model.get(RECOVERLUGIN_PROPERTIES.getName(), config.getKey()).set(config.getValue());
origin: org.jboss.as/jboss-as-connector

if (recoverPlugin != null) {
  setAttribute(model, RECOVERLUGIN_CLASSNAME, recoverPlugin.getClassName());
  if (recoverPlugin.getConfigPropertiesMap() != null) {
    for (Map.Entry<String, String> config : recoverPlugin.getConfigPropertiesMap().entrySet()) {
      model.get(RECOVERLUGIN_PROPERTIES.getName(), config.getKey()).set(config.getValue());
org.jboss.jca.common.api.metadata.commonExtensiongetConfigPropertiesMap

Javadoc

Get the configPropertiesMap.

Popular methods of Extension

  • getClassName
    Get the className.
  • <init>
    Create a new JdbcAdapterExtension.
  • equals
  • hashCode
  • validate

Popular in Java

  • Finding current android device location
  • getSystemService (Context)
  • compareTo (BigDecimal)
  • requestLocationUpdates (LocationManager)
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Collectors (java.util.stream)
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • JTable (javax.swing)
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now