/* * JBoss, Home of Professional Open Source. * Copyright 2012, 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.as.jsf.logging; import java.util.List; import org.jboss.as.server.deployment.DeploymentUnitProcessingException; import org.jboss.jandex.AnnotationTarget; import org.jboss.jandex.DotName; import org.jboss.logging.BasicLogger; import org.jboss.logging.annotations.Cause; import org.jboss.logging.annotations.LogMessage; import org.jboss.logging.Logger; import org.jboss.logging.annotations.Message; import org.jboss.logging.annotations.MessageLogger; import org.jboss.vfs.VirtualFile; import static org.jboss.logging.Logger.Level.ERROR; import static org.jboss.logging.Logger.Level.INFO; import static org.jboss.logging.Logger.Level.WARN; /** * Date: 05.11.2011 * * @author Stuart Douglas * @author <a href="mailto:david.lloyd@redhat.com">David M. Lloyd</a> */ @MessageLogger(projectCode = "WFLYJSF", length = 4) public interface JSFLogger extends BasicLogger { /** * A logger with a category of the package name. */ JSFLogger ROOT_LOGGER = Logger.getMessageLogger(JSFLogger.class, "org.jboss.as.jsf"); @LogMessage(level = WARN) @Message(id = 1, value = "WildFlyConversationAwareViewHandler was improperly initialized. Expected ViewHandler parent.") void viewHandlerImproperlyInitialized(); @LogMessage(level = ERROR) @Message(id = 2, value = "Could not load JSF managed bean class: %s") void managedBeanLoadFail(String managedBean); @LogMessage(level = ERROR) @Message(id = 3, value = "JSF managed bean class %s has no default constructor") void managedBeanNoDefaultConstructor(String managedBean); @LogMessage(level = ERROR) @Message(id = 4, value = "Failed to parse %s, managed beans defined in this file will not be available") void managedBeansConfigParseFailed(VirtualFile facesConfig); @LogMessage(level = WARN) @Message(id = 5, value = "Unknown JSF version '%s'. Default version '%s' will be used instead.") void unknownJSFVersion(String version, String defaultVersion); @LogMessage(level = WARN) @Message(id = 6, value = "JSF version slot '%s' is missing from module %s") void missingJSFModule(String version, String module); @LogMessage(level = INFO) @Message(id = 7, value = "Activated the following JSF Implementations: %s") void activatedJSFImplementations(List target); @Message(id = 8, value = "Failed to load annotated class: %s") String classLoadingFailed(DotName clazz); @Message(id = 9, value = "Annotation %s in class %s is only allowed on classes") String invalidAnnotationLocation(Object annotation, AnnotationTarget classInfo); @Message(id = 10, value = "Instance creation failed") RuntimeException instanceCreationFailed(@Cause Throwable t); @Message(id = 11, value = "Instance destruction failed") RuntimeException instanceDestructionFailed(@Cause Throwable t); @Message(id = 12, value = "Thread local injection container not set") IllegalStateException noThreadLocalInjectionContainer(); @Message(id = 13, value = "@ManagedBean is only allowed at class level %s") String invalidManagedBeanAnnotation(AnnotationTarget target); @Message(id = 14, value = "Default JSF implementation slot '%s' is invalid") DeploymentUnitProcessingException invalidDefaultJSFImpl(String defaultJsfVersion); }