Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* JBoss, Home of Professional Open Source
* Copyright 2013, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.weld.logging;
import static org.jboss.weld.logging.WeldLogger.WELD_PROJECT_CODE;
import org.jboss.logging.Logger;
import org.jboss.logging.Logger.Level;
import org.jboss.logging.annotations.Cause;
import org.jboss.logging.annotations.LogMessage;
import org.jboss.logging.annotations.Message;
import org.jboss.logging.annotations.Message.Format;
import org.jboss.logging.annotations.MessageLogger;
import org.jboss.weld.exceptions.DefinitionException;
import org.jboss.weld.exceptions.DeploymentException;
import org.jboss.weld.exceptions.IllegalArgumentException;
import org.jboss.weld.exceptions.IllegalStateException;
import org.jboss.weld.exceptions.WeldException;
/**
* Error messages relating to utility classes
*
* TODO maybe remove this, I'm not sure users care what we count a utility PLM
*
* Message ids: 000800 - 000899
*/
@MessageLogger(projectCode = WELD_PROJECT_CODE)
public interface UtilLogger extends WeldLogger {
UtilLogger LOG = Logger.getMessageLogger(UtilLogger.class, Category.UTIL.getName());
// log message with id 802 was removed
@Message(id = 804, value = "{0} is not an enum", format = Format.MESSAGE_FORMAT)
IllegalArgumentException classNotEnum(Object param1);
@Message(id = 805, value = "Cannot have more than one post construct method annotated with @PostConstruct for {0}", format = Format.MESSAGE_FORMAT)
DefinitionException tooManyPostConstructMethods(Object param1);
@Message(id = 806, value = "Cannot have more than one pre destroy method annotated @PreDestroy for {0}", format = Format.MESSAGE_FORMAT)
DefinitionException tooManyPreDestroyMethods(Object param1);
@Message(id = 807, value = "Initializer method cannot be annotated @Produces {0}\n\tat {1}\n StackTrace:", format = Format.MESSAGE_FORMAT)
DefinitionException initializerCannotBeProducer(Object param1, Object stackElement);
@Message(id = 808, value = "Initializer method cannot have parameters annotated @Disposes: {0}\n\tat {1}\n StackTrace:", format = Format.MESSAGE_FORMAT)
DefinitionException initializerCannotBeDisposalMethod(Object param1, Object stackElement);
@Message(id = 810, value = "Cannot place qualifiers on final fields: {0}", format = Format.MESSAGE_FORMAT)
DefinitionException qualifierOnFinalField(Object param1);
@Message(id = 812, value = "Cannot determine constructor to use for {0}. Possible constructors {1}", format = Format.MESSAGE_FORMAT)
DefinitionException ambiguousConstructor(Object param1, Object param2);
@Message(id = 813, value = "injectableFields and initializerMethods must have the same size.\n\nInjectable Fields: {0}\nInitializerMethods: {1}", format = Format.MESSAGE_FORMAT)
IllegalArgumentException invalidQuantityInjectableFieldsAndInitializerMethods(Object param1, Object param2);
@Message(id = 814, value = "Annotation {0} is not a qualifier", format = Format.MESSAGE_FORMAT)
IllegalArgumentException annotationNotQualifier(Object param1);
@Message(id = 815, value = "Qualifier {0} is already present in the set {1}", format = Format.MESSAGE_FORMAT)
IllegalArgumentException redundantQualifier(Object param1, Object param2);
@Message(id = 816, value = "Cannot determine constructor to use for {0}", format = Format.MESSAGE_FORMAT)
DefinitionException unableToFindConstructor(Object param1);
@Message(id = 817, value = "Unable to find Bean Deployment Archive for {0}", format = Format.MESSAGE_FORMAT)
IllegalStateException unableToFindBeanDeploymentArchive(Object param1);
@Message(id = 818, value = "Event type {0} is not allowed", format = Format.MESSAGE_FORMAT)
IllegalArgumentException eventTypeNotAllowed(Object param1);
@Message(id = 819, value = "Cannot provide an event type parameterized with a type parameter {0}", format = Format.MESSAGE_FORMAT)
IllegalArgumentException typeParameterNotAllowedInEventType(Object param1);
@Message(id = 820, value = "Cannot proxy non-Class Type {0}", format = Format.MESSAGE_FORMAT)
IllegalArgumentException cannotProxyNonClassType(Object param1);
@Message(id = 824, value = "Error getting field {0} on {1}", format = Format.MESSAGE_FORMAT)
WeldException accessErrorOnField(Object param1, Object param2, @Cause Throwable cause);
@Message(id = 826, value = "Cannot access values() on annotation")
DeploymentException annotationValuesInaccessible(@Cause Throwable cause);
@Message(id = 827, value = "Initializer method may not be a generic method: {0}\n\tat {1}\n StackTrace:", format = Format.MESSAGE_FORMAT)
DefinitionException initializerMethodIsGeneric(Object param1, Object param2);
// log message with id 832 was removed
@Message(id = 833, value = "Resource injection point represents a method which doesn't follow JavaBean conventions {0}", format = Format.MESSAGE_FORMAT)
DefinitionException resourceSetterInjectionNotAJavabean(Object param1);
@LogMessage(level = Level.WARN)
@Message(id = 834, value = "Unable to inject resource - most probably incorrect InjectionServices SPI implementation: {0}\n\tat {1}", format = Format.MESSAGE_FORMAT)
void unableToInjectResource(Object member, Object stackElement);
}