Interface ConnectorLogger

  • All Superinterfaces:
    org.jboss.logging.BasicLogger
    All Known Implementing Classes:
    ConnectorLogger_$logger

    @MessageLogger(projectCode="WFLYJCA",
                   length=4)
    public interface ConnectorLogger
    extends org.jboss.logging.BasicLogger
    Author:
    James R. Perkins, David M. Lloyd
    • Field Detail

      • ROOT_LOGGER

        static final ConnectorLogger ROOT_LOGGER
        The root logger with a category of the default package.
      • DEPLOYER_JDBC_LOGGER

        static final ConnectorLogger DEPLOYER_JDBC_LOGGER
        A logger with the category org.jboss.as.connector.deployers.jdbc.
      • DEPLOYMENT_CONNECTOR_LOGGER

        static final ConnectorLogger DEPLOYMENT_CONNECTOR_LOGGER
        A logger with the category org.jboss.as.deployment.connector.
      • DEPLOYMENT_CONNECTOR_REGISTRY_LOGGER

        static final ConnectorLogger DEPLOYMENT_CONNECTOR_REGISTRY_LOGGER
        A logger with the category org.jboss.as.deployment.connector.registry.
      • DS_DEPLOYER_LOGGER

        static final ConnectorLogger DS_DEPLOYER_LOGGER
        A logger with the category org.jboss.as.connector.deployer.dsdeployer.
      • MDR_LOGGER

        static final ConnectorLogger MDR_LOGGER
        A logger with the category org.jboss.as.connector.services.mdr.
      • SUBSYSTEM_DATASOURCES_LOGGER

        static final ConnectorLogger SUBSYSTEM_DATASOURCES_LOGGER
        A logger with the category org.jboss.as.connector.subsystems.datasources.
      • SUBSYSTEM_RA_LOGGER

        static final ConnectorLogger SUBSYSTEM_RA_LOGGER
        A logger with the category org.jboss.as.connector.subsystems.resourceadapters.
    • Method Detail

      • boundDataSource

        @LogMessage(level=INFO)
        @Message(id=1,
                 value="Bound data source [%s]")
        void boundDataSource​(String jndiName)
        Logs an informational message indicating the data source has been bound.
        Parameters:
        jndiName - the JNDI name
      • boundJca

        @LogMessage(level=INFO)
        @Message(id=2,
                 value="Bound Jakarta Connectors %s [%s]")
        void boundJca​(String description,
                      String jndiName)
        Logs an informational message indicating the Jakarta Connectors bound the object represented by the description parameter.
        Parameters:
        description - the description of what was bound.
        jndiName - the JNDI name.
      • cannotInstantiateDriverClass

        @LogMessage(level=WARN)
        @Message(id=3,
                 value="Unable to instantiate driver class \"%s\": %s")
        void cannotInstantiateDriverClass​(String driverClassName,
                                          Throwable reason)
        Logs a warning message indicating inability to instantiate the driver class.
        Parameters:
        driverClassName - the driver class name.
        reason - the reason the the driver could not be instantiated.
      • deployingCompliantJdbcDriver

        @LogMessage(level=INFO)
        @Message(id=4,
                 value="Deploying JDBC-compliant driver %s (version %d.%d)")
        void deployingCompliantJdbcDriver​(Class<? extends Driver> driver,
                                          int majorVersion,
                                          int minorVersion)
        Logs an informational message indicating the JDBC driver is compliant.
        Parameters:
        driver - the JDBC driver class.
        majorVersion - the major version of the driver.
        minorVersion - the minor version of the driver.
      • deployingNonCompliantJdbcDriver

        @LogMessage(level=INFO)
        @Message(id=5,
                 value="Deploying non-JDBC-compliant driver %s (version %d.%d)")
        void deployingNonCompliantJdbcDriver​(Class<? extends Driver> driver,
                                             int majorVersion,
                                             int minorVersion)
        Logs an informational message indicating the JDBC driver is non-compliant.
        Parameters:
        driver - the non-compliant JDBC driver class.
        majorVersion - the major version of the driver.
        minorVersion - the minor version of the driver.
      • registeredAdminObject

        @LogMessage(level=INFO)
        @Message(id=6,
                 value="Registered admin object at %s")
        void registeredAdminObject​(String jndiName)
        Logs an informational message indicating an admin object was registered.
        Parameters:
        jndiName - the JNDI name.
      • registeredConnectionFactory

        @LogMessage(level=INFO)
        @Message(id=7,
                 value="Registered connection factory %s")
        void registeredConnectionFactory​(String jndiName)
        Logs an informational message indicating the JNDI connection factory was registered.
        Parameters:
        jndiName - the JNDI connection factory.
      • startingSubsystem

        @LogMessage(level=INFO)
        @Message(id=9,
                 value="Starting %s Subsystem (%s)")
        void startingSubsystem​(String subsystem,
                               String version)
        Logs an informational message indicating the subsystem, represented by the subsystem parameter, is starting.
        Parameters:
        subsystem - the subsystem that is starting.
        version - the version of the subsystem.
      • unboundDataSource

        @LogMessage(level=INFO)
        @Message(id=10,
                 value="Unbound data source [%s]")
        void unboundDataSource​(String jndiName)
        Logs an informational message indicating the data source has been unbound.
        Parameters:
        jndiName - the JNDI name
      • unboundJca

        @LogMessage(level=INFO)
        @Message(id=11,
                 value="Unbound Jakarta Connectors %s [%s]")
        void unboundJca​(String description,
                        String jndiName)
        Logs an informational message indicating the Jakarta Connectors inbound the object represented by the description parameter.
        Parameters:
        description - the description of what was unbound.
        jndiName - the JNDI name.
      • driversElementNotSupported

        @LogMessage(level=WARN)
        @Message(id=12,
                 value="<drivers/> in standalone -ds.xml deployments aren\'t supported: Ignoring %s")
        void driversElementNotSupported​(String deploymentName)
      • driverNameAndResourceNameNotEquals

        @Message(id=15,
                 value="the attribute driver-name (%s) cannot be different from driver resource name (%s)")
        org.jboss.as.controller.OperationFailedException driverNameAndResourceNameNotEquals​(String driverName,
                                                                                            String resourceName)
      • methodNotFoundOnDataSource

        @LogMessage(level=WARN)
        @Message(id=16,
                 value="Method %s on DataSource class %s not found. Ignoring")
        void methodNotFoundOnDataSource​(String method,
                                        Class<?> clazz)
      • forceIJToNull

        @LogMessage(level=DEBUG)
        @Message(id=17,
                 value="Forcing ironjacamar.xml descriptor to null")
        void forceIJToNull()
      • startedDriverService

        @LogMessage(level=INFO)
        @Message(id=18,
                 value="Started Driver service with driver-name = %s")
        void startedDriverService​(String driverName)
      • stoppedDriverService

        @LogMessage(level=INFO)
        @Message(id=19,
                 value="Stopped Driver service with driver-name = %s")
        void stoppedDriverService​(String driverName)
      • unsupportedSelectorOption

        @LogMessage(level=WARN)
        @Message(id=20,
                 value="Unsupported selector\'s option: %s")
        void unsupportedSelectorOption​(String name)
      • unsupportedPolicyOption

        @LogMessage(level=WARN)
        @Message(id=21,
                 value="Unsupported policy\'s option: %s")
        void unsupportedPolicyOption​(String name)
      • failedToStartJGroupsChannel

        @Message(id=22,
                 value="Failed to start JGroups channel %s for distributed workmanager %s")
        org.jboss.msc.service.StartException failedToStartJGroupsChannel​(String channelName,
                                                                         String wmName)
        Creates an exception indicating a failure to start JGroup channel for a Distributed Work Manager
        Parameters:
        channelName - the name of the channel
        wmName - the name of the workmanager
        Returns:
        a StartException for the error.
      • failedToFindDistributedWorkManager

        @Message(id=23,
                 value="Cannot find WorkManager %s or it isn\'t a distributed workmanager. Only DWM can override configurations")
        org.jboss.as.controller.OperationFailedException failedToFindDistributedWorkManager​(String wmName)
      • failedToStartDWMTransport

        @Message(id=24,
                 value="Failed to start JGroups transport for distributed workmanager %s")
        org.jboss.msc.service.StartException failedToStartDWMTransport​(String wmName)
      • unsupportedSelector

        @Message(id=25,
                 value="Unsupported selector\'s option: %s")
        org.jboss.as.controller.OperationFailedException unsupportedSelector​(String name)
      • unsupportedPolicy

        @Message(id=26,
                 value="Unsupported policy\'s option: %s")
        org.jboss.as.controller.OperationFailedException unsupportedPolicy​(String name)
      • noSecurityDefined

        @LogMessage(level=WARN)
        @Message(id=27,
                 value="No ironjacamar.security defined for %s")
        void noSecurityDefined​(String jndiName)
      • connectionFactoryAnnotation

        @LogMessage(level=WARN)
        @Message(id=28,
                 value="@ConnectionFactoryDefinition will have limited management: %s")
        void connectionFactoryAnnotation​(String jndiName)
      • adminObjectAnnotation

        @LogMessage(level=WARN)
        @Message(id=29,
                 value="@AdministeredObjectDefinition will have limited management: %s")
        void adminObjectAnnotation​(String jndiName)
      • cannotDeploy

        @Message(id=30,
                 value="unable to deploy")
        org.jboss.jca.deployers.common.DeployException cannotDeploy​(@Cause
                                                                    Throwable cause)
        Creates an exception indicating the inability to complete the deployment.
        Parameters:
        cause - the cause of the error.
        Returns:
        a DeployException for the error.
      • cannotDeployAndValidate

        @Message(id=31,
                 value="unable to validate and deploy ds or xads")
        org.jboss.jca.deployers.common.DeployException cannotDeployAndValidate​(@Cause
                                                                               Throwable cause)
        Creates an exception indicating the inability to deploy and validate a datasource or an XA datasource.
        Parameters:
        cause - the cause of the error.
        Returns:
        a DeployException for the error.
      • deploymentError

        @Message(id=33,
                 value="Error during the deployment of %s")
        org.jboss.msc.service.StartException deploymentError​(@Cause
                                                             Throwable cause,
                                                             String name)
        Creates an exception indicating an error occurred during deployment.
        Parameters:
        cause - the cause of the error.
        name - the name of the deployment in error.
        Returns:
        a StartException for the error.
      • cannotInstantiateDriverClass

        @Message(id=34,
                 value="Unable to instantiate driver class \"%s\". See log (WARN) for more details")
        String cannotInstantiateDriverClass​(String driverClassName)
        A message indicating inability to instantiate the driver class.
        Parameters:
        driverClassName - the driver class name.
        Returns:
        the message.
      • driverVersionMismatch

        @Message(id=35,
                 value="Specified driver version doesn\'t match with actual driver version")
        IllegalStateException driverVersionMismatch()
        Creates an exception indicating the specified driver version does not match the actual driver version.
        Returns:
        an IllegalStateException for the error.
      • failedToCreate

        @Message(id=36,
                 value="Failed to create %s instance for [%s]%n reason: %s")
        String failedToCreate​(String type,
                              org.jboss.dmr.ModelNode operation,
                              String reasonMessage)
        A message indicating the type, represented by the type parameter, failed to be created for the operation represented by the operation message.
        Parameters:
        type - the type that failed to create.
        operation - the operation.
        reasonMessage - the reason.
        Returns:
        the message.
      • failedToGetMetrics

        @Message(id=37,
                 value="failed to get metrics: %s")
        String failedToGetMetrics​(String message)
        A message indicating a failure to get the metrics.
        Parameters:
        message - a message to append.
        Returns:
        the message.
      • failedToGetUrlDelimiter

        @Message(id=39,
                 value="failed to get url delimiter")
        org.jboss.jca.deployers.common.DeployException failedToGetUrlDelimiter​(@Cause
                                                                               Throwable cause)
        Creates an exception indicating a failure to get the URL delimiter.
        Parameters:
        cause - the cause of the error.
        Returns:
        a DeployException for the error.
      • failedToInvokeOperation

        @Message(id=40,
                 value="failed to invoke operation: %s")
        String failedToInvokeOperation​(String message)
        A message indicating a failure to invoke an operation.
        Parameters:
        message - the message to append.
        Returns:
        th message.
      • failedToLoadModuleDriver

        @Message(id=41,
                 value="Failed to load module for driver [%s]")
        String failedToLoadModuleDriver​(String moduleName)
        A message indicating a failure to load the module for a driver.
        Parameters:
        moduleName - the module name.
        Returns:
        the message.
      • failedToMatchPool

        @Message(id=42,
                 value="failed to match pool. Check JndiName: %s")
        IllegalArgumentException failedToMatchPool​(String jndiName)
        Creates an exception indicating a failure to match the pool.
        Parameters:
        jndiName - the JNDI name.
        Returns:
        an IllegalArgumentException for the error.
      • failedToParseServiceXml

        @Message(id=43,
                 value="Failed to parse service xml [%s]")
        org.jboss.as.server.deployment.DeploymentUnitProcessingException failedToParseServiceXml​(org.jboss.vfs.VirtualFile xmlFile)
        Creates an exception indicating a failure to parse the service XML.
        Parameters:
        xmlFile - the service XML file.
        Returns:
        a DeploymentUnitProcessingException for the error.
      • failedToParseServiceXml

        org.jboss.as.server.deployment.DeploymentUnitProcessingException failedToParseServiceXml​(@Cause
                                                                                                 Throwable cause,
                                                                                                 org.jboss.vfs.VirtualFile xmlFile)
        Creates an exception indicating a failure to parse the service XML.
        Parameters:
        cause - the cause of the error.
        xmlFile - the service XML file.
        Returns:
        a DeploymentUnitProcessingException for the error.
      • failedToProcessRaChild

        @Message(id=44,
                 value="Failed to process RA child archives for [%s]")
        org.jboss.as.server.deployment.DeploymentUnitProcessingException failedToProcessRaChild​(@Cause
                                                                                                Throwable cause,
                                                                                                org.jboss.vfs.VirtualFile deploymentRoot)
        Creates an exception indicating a failure to process the resource adapter child archives for the deployment root represented by the deploymentRoot parameter.
        Parameters:
        cause - the cause of the error.
        deploymentRoot - the deployment root.
        Returns:
        a DeploymentUnitProcessingException for the error.
      • failedToSetAttribute

        @Message(id=45,
                 value="failed to set attribute: %s")
        String failedToSetAttribute​(String message)
        A message indicating a failure to set an attribute.
        Parameters:
        message - the message to append.
        Returns:
        the message.
      • failedToStartRaDeployment

        @Message(id=46,
                 value="Failed to start RA deployment [%s]")
        org.jboss.msc.service.StartException failedToStartRaDeployment​(@Cause
                                                                       Throwable cause,
                                                                       String deploymentName)
        Creates an exception indicating the deployment, represented by the deploymentName parameter, failed to start.
        Parameters:
        cause - the cause of the error.
        deploymentName - the deployment name.
        Returns:
        a StartException for the error.
      • jndiBindingsNotSupported

        @Message(id=49,
                 value="Non-explicit JNDI bindings not supported")
        IllegalStateException jndiBindingsNotSupported()
        Creates an exception indicating non-explicit JNDI bindings are not supported.
        Returns:
        an IllegalStateException for the error.
      • noMetricsAvailable

        @Message(id=50,
                 value="no metrics available")
        String noMetricsAvailable()
        A message indicating there are no metrics available.
        Returns:
        the message.
      • notAnAnnotation

        @Message(id=51,
                 value="%s should be an annotation")
        IllegalArgumentException notAnAnnotation​(Class<?> clazz)
        Creates an exception indicating the class, represented by the clazz parameter, should be an annotation.
        Parameters:
        clazz - the invalid class.
        Returns:
        an IllegalArgumentException for the error.
      • nullVar

        @Message(id=52,
                 value="%s is null")
        String nullVar​(String name)
        A message indicating the variable is null.
        Parameters:
        name - the name of the variable.
        Returns:
        the message
      • serviceAlreadyStarted

        @Message(id=53,
                 value="%s service [%s] is already started")
        String serviceAlreadyStarted​(String serviceType,
                                     Object obj)
        A message indicating the service, represented by the serviceType parameter, is already started on the object represented by the obj parameter.
        Parameters:
        serviceType - the service type.
        obj - the object.
        Returns:
        the message.
      • serviceNotAvailable

        @Message(id=54,
                 value="%s service [%s] is not available")
        String serviceNotAvailable​(String serviceType,
                                   Object obj)
        A message indicating the service, represented by the serviceType parameter, is not available on th object represented by the obj parameter.
        Parameters:
        serviceType - the service type.
        obj - the object.
        Returns:
        the message.
      • serviceNotStarted

        @Message(id=56,
                 value="Service not started")
        IllegalStateException serviceNotStarted()
        Creates an exception indicating the service is not started.
        Returns:
        an IllegalStateException for the error.
      • failedToLoadNativeLibraries

        @Message(id=61,
                 value="Failed to load native libraries")
        org.jboss.as.server.deployment.DeploymentUnitProcessingException failedToLoadNativeLibraries​(@Cause
                                                                                                     Throwable cause)
        Failed to load native libraries
        Parameters:
        cause - the exception.
        Returns:
        a DeploymentUnitProcessingException for the error.
      • exceptionDeployingDatasource

        @Message(id=64,
                 value="Exception deploying datasource %s")
        org.jboss.as.server.deployment.DeploymentUnitProcessingException exceptionDeployingDatasource​(@Cause
                                                                                                      Throwable cause,
                                                                                                      String datasource)
      • noDataSourceRegisteredForAddress

        @Message(id=65,
                 value="No DataSource exists at address %s")
        String noDataSourceRegisteredForAddress​(org.jboss.as.controller.PathAddress address)
        No datasource exists at the deployment address
      • xaDataSourcePropertiesNotPresent

        @Message(id=69,
                 value="At least one xa-datasource-property is required for an xa-datasource")
        org.jboss.as.controller.OperationFailedException xaDataSourcePropertiesNotPresent()
        A message indicating that at least on xa-datasource-property is required
        Returns:
        the message.
      • deploymentFailed

        @Message(id=72,
                 value="Deployment %s failed")
        org.jboss.jca.deployers.common.DeployException deploymentFailed​(@Cause
                                                                        Throwable cause,
                                                                        String className)
        Creates an exception indicating the deployment failed.
        Parameters:
        cause - the cause of the error.
        className - the name of the class that failed.
        Returns:
        a DeployException for the error.
      • failedToLoadModuleRA

        @Message(id=73,
                 value="Failed to load module for RA [%s] Cause: %s")
        String failedToLoadModuleRA​(String moduleName,
                                    String cause)
        A message indicating a failure to load the module for a RA deployed as module.
        Parameters:
        moduleName - the module name.
        Returns:
        the message.
      • noSuchMethod

        @Message(id=74,
                 value="Method %s not found")
        NoSuchMethodException noSuchMethod​(String name)
        Creates an exception indicating a method is undefined.
        Parameters:
        name - the name of the method.
        Returns:
        an NoSuchMethodException for the error.
      • noSuchField

        @Message(id=75,
                 value="Field %s not found")
        NoSuchMethodException noSuchField​(String name)
        Creates an exception indicating a field is undefined.
        Parameters:
        name - the name of the field.
        Returns:
        an NoSuchMethodException for the error.
      • noPropertyResolution

        @Message(id=76,
                 value="Unknown property resolution for property %s")
        IllegalArgumentException noPropertyResolution​(String name)
        Creates an exception indicating a property can't be resolved
        Parameters:
        name - the name of the property.
        Returns:
        an NoSuchMethodException for the error.
      • archiveOrModuleRequired

        @Message(id=77,
                 value="At least one of ARCHIVE or MODULE is required")
        org.jboss.as.controller.OperationFailedException archiveOrModuleRequired()
        A message indicating that at least one of archive or module attributes gave to be defined
        Returns:
        the message.
      • compressedRarNotSupportedInModuleRA

        @Message(id=78,
                 value="Rar are supported only in uncompressed form. Failed to load module for RA [%s]")
        String compressedRarNotSupportedInModuleRA​(String moduleName)
        A message indicating a failure to load the module for a RA deployed as module. The cause of this failure ius the use of unsupported compressed form for the rar
        Parameters:
        moduleName - the module name.
        Returns:
        the message.
      • FailedDeployDriverNotSpecified

        @Message(id=79,
                 value="Failed to deploy datasource %s because driver is not specified")
        org.jboss.as.server.deployment.DeploymentUnitProcessingException FailedDeployDriverNotSpecified​(String dsName)
        Creates an exception indicating a failure to deploy the datasource because driver is not specified
        Parameters:
        dsName - the datasource to be deployed.
        Returns:
        a DeploymentUnitProcessingException for the error.
      • RARNotYetDeployed

        @Message(id=80,
                 value="RAR \'%s\' not yet deployed.")
        org.jboss.as.controller.OperationFailedException RARNotYetDeployed​(String raName)
        Creates an exception indicating missing rar.
        Parameters:
        raName - - name.
        Returns:
        a OperationFailedException for the error.
      • invalidConnectionFactory

        @Message(id=83,
                 value="Connection factory interface (%s) is incorrect for resource adapter \'%s\' while deploying %s")
        org.jboss.as.server.deployment.DeploymentUnitProcessingException invalidConnectionFactory​(String cf,
                                                                                                  String ra,
                                                                                                  String jndiName)
        Invalid connection factory interface defined
        Parameters:
        cf - The connection factory
        ra - The resource adapter
        jndiName - The JNDI name
        Returns:
        a DeploymentUnitProcessingException for the error.
      • adminObjectForJCA10

        @Message(id=84,
                 value="Admin object declared for JCA 1.0 resource adapter \'%s\' while deploying %s")
        org.jboss.as.server.deployment.DeploymentUnitProcessingException adminObjectForJCA10​(String ra,
                                                                                             String jndiName)
        Admin object declared for JCA 1.0 archive
        Parameters:
        ra - The resource adapter
        jndiName - The JNDI name
        Returns:
        a DeploymentUnitProcessingException for the error.
      • invalidAdminObject

        @Message(id=85,
                 value="Admin object class (%s) is incorrect for resource adapter \'%s\' while deploying %s")
        org.jboss.as.server.deployment.DeploymentUnitProcessingException invalidAdminObject​(String ao,
                                                                                            String ra,
                                                                                            String jndiName)
        Invalid admin object class defined
        Parameters:
        ao - The admin object
        ra - The resource adapter
        jndiName - The JNDI name
        Returns:
        a DeploymentUnitProcessingException for the error.
      • cannotFindDriverClassName

        @LogMessage(level=WARN)
        @Message(id=86,
                 value="Unable to find driver class name in \"%s\" jar")
        void cannotFindDriverClassName​(String driverName)
        Logs a warning message indicating can't find the driver class name.
        Parameters:
        driverName - the driver jar.
      • unableToRegisterRecovery

        @LogMessage(level=ERROR)
        @Message(id=87,
                 value="Unable to register recovery: %s (%s)")
        void unableToRegisterRecovery​(String key,
                                      boolean isXa)
      • rejectAttributesMustBeTrue

        @Message(id=88,
                 value="Attributes %s rejected. Must be true")
        String rejectAttributesMustBeTrue​(Set<String> key)
      • exceptionDuringUnregistering

        @LogMessage(level=WARN)
        @Message(id=89,
                 value="Exception during unregistering deployment")
        void exceptionDuringUnregistering​(@Cause
                                          org.jboss.jca.core.spi.rar.NotFoundException nfe)
      • jndiNameShouldValidate

        @Message(id=90,
                 value="Jndi name shouldn\'t include \'//\' or end with \'/\'")
        org.jboss.as.controller.OperationFailedException jndiNameShouldValidate()
      • deprecated

        @LogMessage(level=WARN)
        @Message(id=91,
                 value="-ds.xml file deployments are deprecated. Support may be removed in a future version.")
        void deprecated()
      • indexedChildResourceRegistrationNotAvailable

        @Message(id=92,
                 value="Indexed child resources can only be registered if the parent resource supports ordered children. The parent of \'%s\' is not indexed")
        IllegalStateException indexedChildResourceRegistrationNotAvailable​(org.jboss.as.controller.PathElement address)
      • legacyDisableEnableOperation

        @LogMessage(level=INFO)
        @Message(id=93,
                 value="The \'%s\' operation is deprecated. Use of the \'add\' or \'remove\' operations is preferred, or if required the \'write-attribute\' operation can used to set the deprecated \'enabled\' attribute")
        void legacyDisableEnableOperation​(String name)
      • errorDuringRecoveryShutdown

        @LogMessage(level=ERROR)
        @Message(id=96,
                 value="Error during recovery shutdown")
        void errorDuringRecoveryShutdown​(@Cause
                                         Throwable cause)
      • errorStoppingRA

        @LogMessage(level=WARN)
        @Message(id=97,
                 value="Exception while stopping resource adapter")
        void errorStoppingRA​(@Cause
                             Throwable cause)
      • boundNonJTADataSource

        @LogMessage(level=INFO)
        @Message(id=98,
                 value="Bound non-transactional data source: %s")
        void boundNonJTADataSource​(String jndiName)
      • unBoundNonJTADataSource

        @LogMessage(level=INFO)
        @Message(id=99,
                 value="Unbound non-transactional data source: %s")
        void unBoundNonJTADataSource​(String jndiName)
      • oneThreadPoolWorkManager

        @Message(id=101,
                 value="Thread pool: %s(type: %s) can not be added for workmanager: %s, only one thread pool is allowed for each type.")
        org.jboss.as.controller.OperationFailedException oneThreadPoolWorkManager​(String threadPoolName,
                                                                                  String threadPoolType,
                                                                                  String workManagerName)
      • attributeRequiresTrueAttribute

        @Message(id=102,
                 value="Attribute %s can only be defined if %s is true")
        org.jboss.as.controller.OperationFailedException attributeRequiresTrueAttribute​(String attribute,
                                                                                        String requiredAttribute)
        A message indicating that an attribute can only be set if another attribute is set as true.
        Parameters:
        attribute - attribute that is invalid: it is defined but requires another attribute to be set as true
        requiredAttribute - attribute that is required to be defined as true
        Returns:
        the message.
      • attributeRequiresFalseOrUndefinedAttribute

        @Message(id=103,
                 value="Attribute %s can only be defined if %s is undefined or false")
        org.jboss.as.controller.OperationFailedException attributeRequiresFalseOrUndefinedAttribute​(String attribute,
                                                                                                    String requiredFalseAttribute)
        A message indicating that an attribute can only be set if another attribute is undefined or set as false.
        Parameters:
        attribute - attribute that is invalid: it is defined but requires another attribute to be set as false or to be undefined
        requiredFalseAttribute - attribute that is required to be undefined or defined as false
        Returns:
        the message.
      • subject

        @Message(id=104,
                 value="Subject=%s\nSubject identity=%s")
        String subject​(Subject subject,
                       String identity)
      • elytronHandlerHandle

        @LogMessage(level=INFO)
        @Message(id=106,
                 value="Elytron handler handle: %s")
        void elytronHandlerHandle​(String callbacks)
      • executionSubjectNotSetInHandler

        @Message(id=107,
                 value="Execution subject was not provided to the callback handler")
        SecurityException executionSubjectNotSetInHandler()
      • invalidCallbackSecurityDomain

        @Message(id=108,
                 value="Supplied callback doesn\'t contain a security domain reference")
        IllegalArgumentException invalidCallbackSecurityDomain()
      • unsupportedCreateCallbackHandlerMethod

        @Message(id=109,
                 value="Callback with security domain is required - use createCallbackHandler(Callback callback) instead")
        UnsupportedOperationException unsupportedCreateCallbackHandlerMethod()
      • invalidCredentialSourceSupplier

        @Message(id=110,
                 value="CredentialSourceSupplier is invalid for DSSecurity")
        IllegalStateException invalidCredentialSourceSupplier​(@Cause
                                                              Throwable cause)
      • invalidElytronWorkManagerSetting

        @Message(id=111,
                 value="WorkManager hasn\'t elytron-enabled flag set accordingly with RA one")
        IllegalStateException invalidElytronWorkManagerSetting()
      • unexceptedWorkerCompletionError

        @LogMessage(level=ERROR)
        @Message(id=113,
                 value="Unexcepted error during worker execution : %s")
        void unexceptedWorkerCompletionError​(String errorMessage,
                                             @Cause
                                             Throwable t)
      • failedToLoadDataSourceClass

        @Message(id=114,
                 value="Failed to load datasource class: %s")
        org.jboss.as.controller.OperationFailedException failedToLoadDataSourceClass​(String clsName,
                                                                                     @Cause
                                                                                     Throwable t)
      • missingDependencyInModuleDriver

        @Message(id=115,
                 value="Module for driver [%s] or one of it dependencies is missing: [%s]")
        String missingDependencyInModuleDriver​(String moduleName,
                                               String missingModule)
      • raModuleNotFound

        @Message(id=116,
                 value="Failed to load module for RA [%s] - the module or one of its dependencies is missing [%s]")
        String raModuleNotFound​(String moduleName,
                                String missingModule)
      • notAValidDataSourceClass

        @Message(id=117,
                 value="%s is not a valid %s implementation")
        org.jboss.as.controller.OperationFailedException notAValidDataSourceClass​(String clz,
                                                                                  String dsClz)
      • bindingAlias

        @LogMessage(level=INFO)
        @Message(id=118,
                 value="Binding connection factory named %s to alias %s")
        void bindingAlias​(String jndiName,
                          String alias)
      • unbindingAlias

        @LogMessage(level=INFO)
        @Message(id=119,
                 value="Unbinding connection factory named %s to alias %s")
        void unbindingAlias​(String jndiName,
                            String alias)
      • cannotStartDSNoConnectionFactory

        @Message(id=120,
                 value="Unable to start the data source \'%s\' because there are no connection factories, either not defined or failed, please check log.")
        org.jboss.msc.service.StartException cannotStartDSNoConnectionFactory​(String dataSourceJNDIName)
        Creates an exception indicating the data source was unable to start because it create more than one connection factory.
        Parameters:
        dataSourceJNDIName -
        Returns:
        a StartException for the error.
      • cannotStartDSTooManyConnectionFactories

        @Message(id=121,
                 value="Unable to start the data source \'%s\' because there is more than one(%s) connection factory defined.")
        org.jboss.msc.service.StartException cannotStartDSTooManyConnectionFactories​(String dataSourceJNDIName,
                                                                                     int factoriesCount)
        Creates an exception indicating the data source was unable to start because it create more than one connection factory.
        Parameters:
        dataSourceJNDIName -
        factoriesCount -
        Returns:
        a StartException for the error.
      • threadPoolNameMustMatchWorkManagerName

        @Message(id=122,
                 value="Thread pool name %s(type: %s) must match the workmanager name %s.")
        org.jboss.as.controller.OperationFailedException threadPoolNameMustMatchWorkManagerName​(String threadPoolName,
                                                                                                String threadPoolType,
                                                                                                String workManagerName)
      • legacySecurityNotAvailable

        @Message(id=123,
                 value="Connection definition %s from resource adapter %s is configured to require the legacy security subsystem, which is not present")
        org.jboss.as.controller.OperationFailedException legacySecurityNotAvailable​(String connectionDef,
                                                                                    String ra)
      • legacySecurityNotAvailable

        @Message(id=124,
                 value="Datasource %s is configured to require the legacy security subsystem, which is not present")
        org.jboss.as.controller.OperationFailedException legacySecurityNotAvailable​(String datasourceName)
      • legacySecurityNotAvailableForDsXml

        @Message(id=125,
                 value="Datasource %s is configured to require the legacy security subsystem, which is not present")
        org.jboss.as.server.deployment.DeploymentUnitProcessingException legacySecurityNotAvailableForDsXml​(String datasourceName)
      • legacySecurityNotAvailableForRa

        @Message(id=126,
                 value="Connection definition for %s is configured to require the legacy security subsystem, which is not present")
        org.jboss.as.server.deployment.DeploymentUnitProcessingException legacySecurityNotAvailableForRa​(String deploymentName)
      • legacySecurityNotAvailableForConnectionFactory

        @Message(id=127,
                 value="Connection factory  %s is configured to require the legacy security subsystem, which is not present")
        IllegalStateException legacySecurityNotAvailableForConnectionFactory​(String jndiName)
      • legacySecurityNotAvailable

        @Message(id=128,
                 value="Legacy security is not available")
        IllegalStateException legacySecurityNotAvailable()
      • wrongModuleName

        @Message(id=129,
                 value="Wrong module name %s")
        org.jboss.as.controller.OperationFailedException wrongModuleName​(@Cause
                                                                         org.jboss.modules.ModuleLoadException exception,
                                                                         String moduleName)
      • reportDirectoryDoesNotExist

        @Message(id=130,
                 value="Report directory %s does not exist")
        org.jboss.as.controller.OperationFailedException reportDirectoryDoesNotExist​(String reportDirectory)