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

org.infinispan.tasks.logging.Log Maven / Gradle / Ivy

The newest version!
package org.infinispan.tasks.logging;

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

/**
 * Log abstraction for the Tasks module. For this module, message ids ranging from 27001 to
 * 27500 inclusively have been reserved.
 *
 * @author Tristan Tarrant
 * @since 8.1
 */
@MessageLogger(projectCode = "ISPN")
public interface Log extends BasicLogger {
   /*@Message(value = "Task Engine '%s' has already been registered", id = 27001)
   IllegalStateException duplicateTaskEngineRegistration(String taskEngineName);*/

   @Message(value = "Unknown task '%s'", id = 27002)
   IllegalArgumentException unknownTask(String taskName);


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy