Codota Logo
Extension.getConfigPropertiesMap
Code IndexAdd Codota 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)

  • Common ways to obtain Extension
private void myMethod () {
Extension e =
  • Codota IconString className;Map configPropertiesMap;new Extension(className, configPropertiesMap)
  • Codota IconDataSource dataSource;dataSource.getValidation().getExceptionSorter()
  • Codota IconDataSource dataSource;dataSource.getValidation().getStaleConnectionChecker()
  • Smart code suggestions by Codota
}
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

  • Updating database using SQL prepared statement
  • putExtra (Intent)
  • onRequestPermissionsResult (Fragment)
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • FileOutputStream (java.io)
    A file output stream is an output stream for writing data to aFile or to a FileDescriptor. Whether
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Notification (javax.management)
  • BoxLayout (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now