Interface Log

All Superinterfaces:
org.jboss.logging.BasicLogger

@MessageLogger(projectCode="ISPN") public interface Log extends org.jboss.logging.BasicLogger
range: 29501 - 30000
Since:
9.0
Author:
Pedro Ruivo
  • Field Details

  • Method Details

    • missingCounterName

      @Message(value="The counter name is missing.", id=29503) CounterConfigurationException missingCounterName()
    • invalidStorageMode

      @Message(value="Invalid storage mode. It must be non-null", id=29504) CounterConfigurationException invalidStorageMode()
    • invalidPersistentStorageMode

      @Message(value="Invalid storage mode. PERSISTENT is not allowed without global state enabled in cache container.", id=29505) CounterConfigurationException invalidPersistentStorageMode()
    • invalidNumOwners

      @Message(value="Invalid number of owner. It must be higher than zero but it was %s", id=29506) CounterConfigurationException invalidNumOwners(int value)
    • invalidReliabilityMode

      @Message(value="Invalid reliability mode. It must be non-null", id=29507) CounterConfigurationException invalidReliabilityMode()
    • invalidInitialValueForBoundedCounter

      @Message(value="Invalid initial value for counter. It must be between %s and %s (inclusive) but was %s", id=29508) CounterConfigurationException invalidInitialValueForBoundedCounter(long lower, long upper, long value)
    • invalidConcurrencyLevel

      @Message(value="Invalid concurrency-level. It must be higher than zero but it was %s", id=29509) CounterConfigurationException invalidConcurrencyLevel(int value)
    • invalidCounterType

      @Message(value="Invalid counter type. Expected=%s but got %s", id=29514) CounterException invalidCounterType(String expected, String actual)
    • unableToFetchCaches

      @Message(value="Unable to fetch counter manager caches.", id=29515) CounterException unableToFetchCaches()
    • undefinedCounter

      @Message(value="Counter \'%s\' is not defined.", id=29516) CounterNotFoundException undefinedCounter(String name)
    • duplicatedCounterName

      @Message(value="Duplicated counter name found. Counter \'%s\' already exists.", id=29517) CounterConfigurationException duplicatedCounterName(String counter)
    • metadataIsMissing

      @Message(value="Metadata not found but counter exists. Counter=%s", id=29518) IllegalStateException metadataIsMissing(ByteString counterName)
    • invalidScope

      @Message(value="Invalid scope for tag <counter>. Expected CACHE_CONTAINER but was %s", id=29520) CounterConfigurationException invalidScope(String scope)
    • invalidSameLowerAndUpperBound

      @Message(value="Lower bound (%s) and upper bound (%s) can\'t be the same.", id=29524) CounterConfigurationException invalidSameLowerAndUpperBound(long lower, long upper)
    • cannotRenamePersistentFile

      @Message(value="Cannot rename file %s to %s", id=29525) CounterConfigurationException cannotRenamePersistentFile(String absolutePath, File persistentFile, @Cause Throwable cause)
    • errorPersistingCountersConfiguration

      @Message(value="Error while persisting counter\'s configurations", id=29526) CounterConfigurationException errorPersistingCountersConfiguration(@Cause Throwable cause)
    • errorReadingCountersConfiguration

      @Message(value="Error while reading counter\'s configurations", id=29527) CounterConfigurationException errorReadingCountersConfiguration(@Cause Throwable cause)
    • counterManagerNotStarted

      @Message(value="CounterManager hasn\'t started yet or has been stopped.", id=29528) CounterException counterManagerNotStarted()
    • jmxRegistrationFailed

      @Message(value="MBean registration failed", id=29529) CounterException jmxRegistrationFailed(@Cause Throwable cause)