Interface LiteExtensionTranslatorLogger

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

    @MessageLogger(projectCode="LITE-EXTENSION-TRANSLATOR-")
    public interface LiteExtensionTranslatorLogger
    extends org.jboss.logging.BasicLogger
    Logger for Lite extension translator module.
    Author:
    Matej Novotny
    • Method Detail

      • unableToInstantiateObject

        @Message(id=0,
                 value="Unable to instantiate object from class {0} via no-args constructor. The exception was: {1}",
                 format=MESSAGE_FORMAT)
        IllegalStateException unableToInstantiateObject​(Class<?> classToInstantiate,
                                                        String exception,
                                                        @Cause
                                                        Throwable cause)
      • unexpectedMethodArgument

        @Message(id=1,
                 value="Unexpected extension method argument: {0}",
                 format=MESSAGE_FORMAT)
        IllegalArgumentException unexpectedMethodArgument​(Object argument)
      • invalidMethodParameter

        @Message(id=2,
                 value="{0} methods can\'t declare a parameter of type {1}, found at {2}. Method name - {3}",
                 format=MESSAGE_FORMAT)
        IllegalArgumentException invalidMethodParameter​(Object phaseString,
                                                        Object paramTypeString,
                                                        Object declaringClassName,
                                                        Object methodName)
      • unknownDeclaration

        @Message(id=3,
                 value="Unknown declaration {0}",
                 format=MESSAGE_FORMAT)
        IllegalArgumentException unknownDeclaration​(Object cdiDeclaration)
      • missingObservesAnnotation

        @Message(id=4,
                 value="Observer method without an @Observes parameter: {0}",
                 format=MESSAGE_FORMAT)
        IllegalStateException missingObservesAnnotation​(Object cdiDeclaration)
      • unknownPrimitiveType

        @Message(id=5,
                 value="Unknown primitive type: {0}",
                 format=MESSAGE_FORMAT)
        IllegalArgumentException unknownPrimitiveType​(Object typeFound)
      • incorrectParameterCount

        @Message(id=6,
                 value="Zero or more than one parameter of type {0} for method {1} with declaring class {2}",
                 format=MESSAGE_FORMAT)
        DefinitionException incorrectParameterCount​(String validParameterTypes,
                                                    Object method,
                                                    Object declaringClass)
      • unknownQueryParameter

        @Message(id=7,
                 value="Unknown query parameter: {0}",
                 format=MESSAGE_FORMAT)
        IllegalStateException unknownQueryParameter​(Object query)
      • unableToInvokeExtensionMethod

        @Message(id=8,
                 value="Unable to invoke extension method {0} with arguments {1}. The exception was: {2}",
                 format=MESSAGE_FORMAT)
        IllegalStateException unableToInvokeExtensionMethod​(Object method,
                                                            Object arguments,
                                                            String exception,
                                                            @Cause
                                                            Exception cause)
      • cannotLoadClassByName

        @Message(id=9,
                 value="Unable to load class with name {0}. The exception was: {1}",
                 format=MESSAGE_FORMAT)
        IllegalStateException cannotLoadClassByName​(Object className,
                                                    String exception,
                                                    @Cause
                                                    Throwable cause)
      • invalidExtensionMethodParameterType

        @Message(id=10,
                 value="Unrecognized parameter of type {0} declared in class {1}#{2}",
                 format=MESSAGE_FORMAT)
        IllegalArgumentException invalidExtensionMethodParameterType​(Object type,
                                                                     Object declaringClass,
                                                                     Object methodName)
      • unknownReflectionType

        @Message(id=11,
                 value="Unknown reflection type {0}",
                 format=MESSAGE_FORMAT)
        IllegalArgumentException unknownReflectionType​(Object reflectionType)
      • unknownAnnotationMember

        @Message(id=12,
                 value="Unknown annotation member {0}",
                 format=MESSAGE_FORMAT)
        IllegalArgumentException unknownAnnotationMember​(Object annotationMember)
      • unableToAccessAnnotationMembers

        @Message(id=14,
                 value="Unable to access annotation member(s) for annotation {0}. The exception was: {1}",
                 format=MESSAGE_FORMAT)
        DefinitionException unableToAccessAnnotationMembers​(Object annotation,
                                                            String exception,
                                                            @Cause
                                                            Throwable cause)
      • illegalAnnotationMemberType

        @Message(id=15,
                 value="Provided type {0} is illegal because it doesn\'t match an of known annotation member types.",
                 format=MESSAGE_FORMAT)
        IllegalArgumentException illegalAnnotationMemberType​(Object type)
      • annotationFactoryInstanceNotInitialized

        @LogMessage(level=WARN)
        @Message(id=16,
                 value="AnnotationBuilderFactoryImpl wasn\'t initialized properly before using it. This can be caused by attempted usage outside of build compatible extension cycle. The init process will use a fallback method.",
                 format=MESSAGE_FORMAT)
        void annotationFactoryInstanceNotInitialized()
      • problemExecutingExtensionMethod

        @Message(id=17,
                 value="There was a problem executing Build Compatible Extension method {0} during phase {1}. The exception was: {2}",
                 format=MESSAGE_FORMAT)
        DeploymentException problemExecutingExtensionMethod​(Object method,
                                                            Object phase,
                                                            String exception,
                                                            @Cause
                                                            Throwable cause)