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

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

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

origin: wildfly/wildfly

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

    return;
  setStringIfNotNull(context, dataSource.getPool().getCapacity().getIncrementer().getClassName());
} else if (attributeName.equals(org.jboss.as.connector.subsystems.common.pool.Constants.CAPACITY_DECREMENTER_CLASS.getName())) {
  if (dataSource.getPool() == null || dataSource.getPool().getCapacity() == null || dataSource.getPool().getCapacity().getDecrementer() == null) {
    return;
  setStringIfNotNull(context, dataSource.getPool().getCapacity().getDecrementer().getClassName());
    return;
  setStringIfNotNull(context, dataSource.getSecurity().getReauthPlugin().getClassName());
} else if (attributeName.equals(Constants.REAUTHPLUGIN_PROPERTIES.getName())) {
  if (dataSource.getSecurity() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getExceptionSorter().getClassName());
} else if (attributeName.equals(Constants.EXCEPTION_SORTER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getStaleConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.STALE_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getValidConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.VALID_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, ((DsPool) pool).getConnectionListener().getClassName());
origin: wildfly/wildfly

  setStringIfNotNull(context, dataSource.getXaPool().getCapacity().getIncrementer().getClassName());
} else if (attributeName.equals(org.jboss.as.connector.subsystems.common.pool.Constants.CAPACITY_DECREMENTER_CLASS.getName())) {
  if (dataSource.getXaPool() == null || dataSource.getXaPool().getCapacity() == null || dataSource.getXaPool().getCapacity().getDecrementer() == null) {
    return;
  setStringIfNotNull(context, dataSource.getXaPool().getCapacity().getDecrementer().getClassName());
  setStringIfNotNull(context, dataSource.getRecovery().getRecoverPlugin().getClassName());
} else if (attributeName.equals(Constants.RECOVER_PLUGIN_PROPERTIES.getName())) {
  if(dataSource.getRecovery() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getExceptionSorter().getClassName());
} else if (attributeName.equals(Constants.EXCEPTION_SORTER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getStaleConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.STALE_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getValidConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.VALID_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getSecurity().getReauthPlugin().getClassName());
} else if (attributeName.equals(Constants.REAUTHPLUGIN_PROPERTIES.getName())) {
  if (dataSource.getSecurity() == null) {
  setStringIfNotNull(context, ((DsXaPool) pool).getConnectionListener().getClassName());
origin: wildfly/wildfly

if (pool.getCapacity() != null) {
  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()) {
    setAttribute(model, CAPACITY_DECREMENTER_CLASS, pool.getCapacity().getDecrementer().getClassName());
    if (pool.getCapacity().getDecrementer().getConfigPropertiesMap() != null) {
      for (Map.Entry<String, String> config : pool.getCapacity().getDecrementer().getConfigPropertiesMap().entrySet()) {
final Extension recoverPlugin = recovery.getRecoverPlugin();
if (recoverPlugin != null) {
  setAttribute(model, RECOVERLUGIN_CLASSNAME, recoverPlugin.getClassName());
  if (recoverPlugin.getConfigPropertiesMap() != null) {
    for (Map.Entry<String, String> config : recoverPlugin.getConfigPropertiesMap().entrySet()) {
origin: org.jboss.ironjacamar/ironjacamar-common-api

sb.append(incrementer.getClassName()).append("\"");
sb.append(">");
sb.append(decrementer.getClassName()).append("\"");
sb.append(">");
origin: org.jboss.ironjacamar/ironjacamar-common-api

sb.append(recoverPlugin.getClassName()).append("\"");
sb.append(">");
origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

sb.append(getReauthPlugin().getClassName()).append("\"");
sb.append(">");
origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

sb.append(connectionListener.getClassName()).append("\"");
sb.append(">");
origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

sb.append(connectionListener.getClassName()).append("\"");
sb.append(">");
origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

sb.append(validConnectionChecker.getClassName()).append("\"");
sb.append(">");
sb.append(staleConnectionChecker.getClassName()).append("\"");
sb.append(">");
sb.append(exceptionSorter.getClassName()).append("\"");
sb.append(">");
origin: org.jboss.ironjacamar/ironjacamar-core-impl

if (metadata.getIncrementer() != null && metadata.getIncrementer().getClassName() != null)
  incrementer = loadIncrementer(metadata.getIncrementer().getClassName());
   log.invalidCapacityIncrementer(metadata.getIncrementer().getClassName());
if (metadata.getDecrementer() != null && metadata.getDecrementer().getClassName() != null)
   decrementer = loadDecrementer(metadata.getDecrementer().getClassName());
     log.invalidCapacityDecrementer(metadata.getDecrementer().getClassName());
   if (TimedOutDecrementer.class.getName().equals(metadata.getDecrementer().getClassName()) ||
     TimedOutFIFODecrementer.class.getName().equals(metadata.getDecrementer().getClassName()) ||
     MinPoolSizeDecrementer.class.getName().equals(metadata.getDecrementer().getClassName()) ||
     SizeDecrementer.class.getName().equals(metadata.getDecrementer().getClassName()))
     decrementer = loadDecrementer(metadata.getDecrementer().getClassName());
     log.invalidCapacityDecrementer(metadata.getDecrementer().getClassName());
origin: org.jboss.ironjacamar.jdk8/ironjacamar-common-impl

if (ds != null && ds.getValidation() != null &&
  ds.getValidation().getValidConnectionChecker() != null &&
  ds.getValidation().getValidConnectionChecker().getClassName() != null)
   .getValidConnectionChecker().getClassName()));
if (ds != null && ds.getValidation() != null &&
  ds.getValidation().getValidConnectionChecker() != null &&
  ds.getValidation().getValidConnectionChecker().getClassName() != null)
  ds.getValidation().getExceptionSorter().getClassName() != null)
   .getExceptionSorter().getClassName()));
if (ds != null && ds.getValidation() != null &&
  ds.getValidation().getStaleConnectionChecker() != null &&
  ds.getValidation().getStaleConnectionChecker().getClassName() != null)
   .getStaleConnectionChecker().getClassName()));
origin: org.jboss.eap/wildfly-connector

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

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

    return;
  setStringIfNotNull(context, dataSource.getPool().getCapacity().getIncrementer().getClassName());
} else if (attributeName.equals(org.jboss.as.connector.subsystems.common.pool.Constants.CAPACITY_DECREMENTER_CLASS.getName())) {
  if (dataSource.getPool() == null || dataSource.getPool().getCapacity() == null || dataSource.getPool().getCapacity().getDecrementer() == null) {
    return;
  setStringIfNotNull(context, dataSource.getPool().getCapacity().getDecrementer().getClassName());
    return;
  setStringIfNotNull(context, dataSource.getSecurity().getReauthPlugin().getClassName());
} else if (attributeName.equals(Constants.REAUTHPLUGIN_PROPERTIES.getName())) {
  if (dataSource.getSecurity() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getExceptionSorter().getClassName());
} else if (attributeName.equals(Constants.EXCEPTION_SORTER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getStaleConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.STALE_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getValidConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.VALID_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, ((DsPool) pool).getConnectionListener().getClassName());
origin: org.jboss.as/jboss-as-connector

    return;
  setStringIfNotNull(context, dataSource.getSecurity().getReauthPlugin().getClassName());
} else if (attributeName.equals(Constants.REAUTHPLUGIN_PROPERTIES.getName())) {
  if (dataSource.getSecurity() == null) {
    return;
  setStringIfNotNull(context, dataSource.getValidation().getExceptionSorter().getClassName());
} else if (attributeName.equals(Constants.EXCEPTION_SORTER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
    return;
  setStringIfNotNull(context, dataSource.getValidation().getStaleConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.STALE_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
    return;
  setStringIfNotNull(context, dataSource.getValidation().getValidConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.VALID_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
origin: org.jboss.as/jboss-as-connector

    return;
  setStringIfNotNull(context, dataSource.getRecovery().getRecoverPlugin().getClassName());
} else if (attributeName.equals(Constants.RECOVER_PLUGIN_PROPERTIES.getName())) {
  if(dataSource.getRecovery() == null) {
    return;
  setStringIfNotNull(context, dataSource.getValidation().getExceptionSorter().getClassName());
} else if (attributeName.equals(Constants.EXCEPTION_SORTER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
    return;
  setStringIfNotNull(context, dataSource.getValidation().getStaleConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.STALE_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
    return;
  setStringIfNotNull(context, dataSource.getValidation().getValidConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.VALID_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getSecurity().getReauthPlugin().getClassName());
} else if (attributeName.equals(Constants.REAUTHPLUGIN_PROPERTIES.getName())) {
  if (dataSource.getSecurity() == null) {
origin: org.jboss.eap/wildfly-connector

  setStringIfNotNull(context, dataSource.getXaPool().getCapacity().getIncrementer().getClassName());
} else if (attributeName.equals(org.jboss.as.connector.subsystems.common.pool.Constants.CAPACITY_DECREMENTER_CLASS.getName())) {
  if (dataSource.getXaPool() == null || dataSource.getXaPool().getCapacity() == null || dataSource.getXaPool().getCapacity().getDecrementer() == null) {
    return;
  setStringIfNotNull(context, dataSource.getXaPool().getCapacity().getDecrementer().getClassName());
  setStringIfNotNull(context, dataSource.getRecovery().getRecoverPlugin().getClassName());
} else if (attributeName.equals(Constants.RECOVER_PLUGIN_PROPERTIES.getName())) {
  if(dataSource.getRecovery() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getExceptionSorter().getClassName());
} else if (attributeName.equals(Constants.EXCEPTION_SORTER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getStaleConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.STALE_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getValidation().getValidConnectionChecker().getClassName());
} else if (attributeName.equals(Constants.VALID_CONNECTION_CHECKER_PROPERTIES.getName())) {
  if (dataSource.getValidation() == null) {
  setStringIfNotNull(context, dataSource.getSecurity().getReauthPlugin().getClassName());
} else if (attributeName.equals(Constants.REAUTHPLUGIN_PROPERTIES.getName())) {
  if (dataSource.getSecurity() == null) {
  setStringIfNotNull(context, ((DsXaPool) pool).getConnectionListener().getClassName());
origin: org.jboss.eap/wildfly-connector

if (pool.getCapacity() != null) {
  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()) {
    setAttribute(model, CAPACITY_DECREMENTER_CLASS, pool.getCapacity().getDecrementer().getClassName());
    if (pool.getCapacity().getDecrementer().getConfigPropertiesMap() != null) {
      for (Map.Entry<String, String> config : pool.getCapacity().getDecrementer().getConfigPropertiesMap().entrySet()) {
final Extension recoverPlugin = recovery.getRecoverPlugin();
if (recoverPlugin != null) {
  setAttribute(model, RECOVERLUGIN_CLASSNAME, recoverPlugin.getClassName());
  if (recoverPlugin.getConfigPropertiesMap() != null) {
    for (Map.Entry<String, String> config : recoverPlugin.getConfigPropertiesMap().entrySet()) {
origin: org.jboss.as/jboss-as-connector

final Extension recoverPlugin = recovery.getRecoverPlugin();
if (recoverPlugin != null) {
  setAttribute(model, RECOVERLUGIN_CLASSNAME, recoverPlugin.getClassName());
  if (recoverPlugin.getConfigPropertiesMap() != null) {
    for (Map.Entry<String, String> config : recoverPlugin.getConfigPropertiesMap().entrySet()) {
org.jboss.jca.common.api.metadata.commonExtensiongetClassName

Javadoc

Get the className.

Popular methods of Extension

  • getConfigPropertiesMap
    Get the configPropertiesMap.
  • <init>
    Create a new JdbcAdapterExtension.
  • equals
  • hashCode
  • validate

Popular in Java

  • Making http post requests using okhttp
  • onCreateOptionsMenu (Activity)
  • getResourceAsStream (ClassLoader)
  • runOnUiThread (Activity)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • JComboBox (javax.swing)
  • Top plugins for Android Studio
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