Interface Log

All Superinterfaces:
BasicLogger
All Known Implementing Classes:
Log_$logger

@MessageLogger(projectCode="ISPN") @ValidIdRange(min=14501, max=14800) public interface Log extends BasicLogger
Log abstraction for the search mapper module. For this module, message ids ranging from 14501 to 14800 inclusively have been reserved.
Since:
12.0
  • Method Details

    • errorRetrievingTypeModel

      @Message(id=14501, value="Exception while retrieving the type model for \'%1$s\'.") SearchException errorRetrievingTypeModel(@FormatWith(ClassFormatter.class) Class<?> clazz, @Cause Exception cause)
    • multipleEntityTypesWithSameName

      @Message(id=14502, value="Multiple entity types configured with the same name \'%1$s\': \'%2$s\', \'%3$s\'") SearchException multipleEntityTypesWithSameName(String entityName, Class<?> previousType, Class<?> type)
    • namedTypesNotSupported

      @Message(id=14503, value="Infinispan Search Mapper does not support named types. The type with name \'%1$s\' does not exist.") SearchException namedTypesNotSupported(String name)
    • unableToLoadTheClass

      @Message(id=14504, value="Unable to load class [%1$s]") ClassLoadingException unableToLoadTheClass(String className, @Cause Throwable cause)
    • invalidEntityName

      @Message(id=14505, value="Unknown entity name: \'%1$s\'.") SearchException invalidEntityName(String entityName)
    • invalidEntitySuperType

      @Message(id=14506, value="Invalid type for \'%1$s\': the entity type must extend \'%2$s\', but entity type \'%3$s\' does not.") SearchException invalidEntitySuperType(String entityName, @FormatWith(ClassFormatter.class) Class<?> expectedSuperType, @FormatWith(ClassFormatter.class) Class<?> actualJavaType)