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

org.jboss.jca.deployers.DeployersLogger Maven / Gradle / Ivy

Go to download

IronJacamar is an implementation of the Java EE Connector Architecture 1.7 specification

There is a newer version: 3.0.10.Final
Show newest version
/*
 * IronJacamar, a Java EE Connector Architecture implementation
 * Copyright 2011, Red Hat Inc, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

package org.jboss.jca.deployers;

import org.jboss.logging.BasicLogger;
import org.jboss.logging.annotations.Cause;
import org.jboss.logging.annotations.LogMessage;
import org.jboss.logging.annotations.Message;
import org.jboss.logging.annotations.MessageLogger;

import static org.jboss.logging.Logger.Level.ERROR;
import static org.jboss.logging.Logger.Level.INFO;
import static org.jboss.logging.Logger.Level.WARN;

/**
 * The deployers logger.
 *
 * Message ids ranging from 020000 to 029999 inclusively.
 */
@MessageLogger(projectCode = "IJ")
public interface DeployersLogger extends BasicLogger
{
   // ABSTRACT RESOURCE ADAPTER DEPLOYER

   /**
    * Required license terms
    * @param url The license url
    */
   @LogMessage(level = INFO)
   @Message(id = 20001, value = "Required license terms for %s")
   public void requiredLicenseTerms(String url);

   /**
    * Deployed
    * @param url The url
    */
   @LogMessage(level = INFO)
   @Message(id = 20002, value = "Deployed: %s")
   public void deployed(String url);

   /**
    * Validation report failure
    * @param detail The details
    * @param t The exception
    */
   @LogMessage(level = WARN)
   @Message(id = 20003, value = "Failure during validation report generation: %s")
   public void validationReportFailure(String detail, @Cause Throwable t);

   /**
    * Connection definition mismatch
    * @param clz The class name
    */
   @LogMessage(level = WARN)
   @Message(id = 20004, value = "Only one connection definition found with a mismatch in class-name: %s")
   public void connectionDefinitionMismatch(String clz);

   /**
    * Admin object mismatch
    * @param clz The class name
    */
   @LogMessage(level = WARN)
   @Message(id = 20005, value = "Only one admin object found with a mismatch in class-name: %s")
   public void adminObjectMismatch(String clz);

   /**
    * Null connection factory
    */
   @LogMessage(level = ERROR)
   @Message(id = 20006, value = "ConnectionFactory is null")
   public void nullConnectionFactory();

   /**
    * Subject ceration error
    * @param detail The details
    * @param t The exception
    */
   @LogMessage(level = ERROR)
   @Message(id = 20007, value = "Exception during createSubject(): %s")
   public void subjectCreationError(String detail, @Cause Throwable t);

   /**
    * Invalid config property
    * @param cp The config property name
    */
   @LogMessage(level = WARN)
   @Message(id = 20008, value = "Invalid config-property: %s")
   public void invalidConfigProperty(String cp);

   /**
    * Connection definition invalid
    * @param clz The class name
    */
   @LogMessage(level = WARN)
   @Message(id = 20009, value = "Invalid connection definition with class-name: %s")
   public void connectionDefinitionInvalid(String clz);

   /**
    * Connection definition class-name null
    */
   @LogMessage(level = ERROR)
   @Message(id = 20010, value = "Connection definition with missing class-name")
   public void connectionDefinitionNull();

   /**
    * Admin object class-name null
    */
   @LogMessage(level = ERROR)
   @Message(id = 20011, value = "Admin object with missing class-name")
   public void adminObjectNull();

   /**
    * Admin object not bound
    * @param clz The class name
    */
   @LogMessage(level = WARN)
   @Message(id = 20012, value = "Admin object not bound: %s")
   public void adminObjectNotBound(String clz);

   /**
    * Connection factory not bound
    * @param clz The class name
    */
   @LogMessage(level = WARN)
   @Message(id = 20013, value = "Connection factory not bound: %s")
   public void connectionFactoryNotBound(String clz);

   /**
    * Admin object not spec compliant
    * @param clz The class name
    */
   @LogMessage(level = INFO)
   @Message(id = 20014, value = "Admin object not specification compliant. " +
            "See 13.4.2.3 for additional details: %s")
   public void adminObjectNotSpecCompliant(String clz);

   /**
    * Connection factory not spec compliant
    * @param clz The class name
    */
   @LogMessage(level = INFO)
   @Message(id = 20015, value = "Connection factory not specification compliant. " +
            "See 6.5.1.3 for additional details: %s")
   public void connectionFactoryNotSpecCompliant(String clz);

   /**
    * Missing recovery
    * @param jndi The jndi name
    */
   @LogMessage(level = WARN)
   @Message(id = 20016, value = "Missing  element. XA recovery disabled for: %s")
   public void missingRecovery(String jndi);

   /**
    * Invalid archive
    * @param archive The archive
    */
   @LogMessage(level = WARN)
   @Message(id = 20017, value = "Invalid archive: %s")
   public void validationInvalidArchive(String archive);

   /**
    * Enabling validate-on-match
    * @param jndiName The JNDI name
    */
   @LogMessage(level = INFO)
   @Message(id = 20018, value = "Enabling  for %s")
   public void enablingValidateOnMatch(String jndiName);

   /**
    * Changed TransactionSupport
    * @param jndiName The JNDI name
    */
   @LogMessage(level = INFO)
   @Message(id = 20019, value = "Changed TransactionSupport for %s")
   public void changedTransactionSupport(String jndiName);

   /**
    * Connection Properties for DataSource is empty.
    *
    * @param jndiName The JNDI name
    * @param driverClass The driver class
    * @param connURL  The connection URL
    */
   @LogMessage(level = WARN)
   @Message(id = 20020, value = "Connection Properties for DataSource: '%s' is empty, try to use driver-class: '%s' and"
         + " connection-url: '%s' to connect database")
   public void connectionPropertiesEmpty(String jndiName, String driverClass, String connURL);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy