Interface Log

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

@MessageLogger(projectCode="ISPN") @ValidIdRange(min=27501, max=28000) public interface Log extends org.jboss.logging.BasicLogger
Log abstraction for the Scripting module.
Since:
7.2
Author:
Tristan Tarrant
  • Method Details

    • scriptExecutionError

      @Message(value="Script execution error", id=27503) CacheException scriptExecutionError(@Cause Throwable t)
    • scriptCompilationException

      @Message(value="Compiler error for script '%s'", id=27504) CacheException scriptCompilationException(@Cause Throwable t, String name)
    • noNamedScript

      @Message(value="No script named '%s'", id=27505) CacheException noNamedScript(String name)
    • unknownScriptProperty

      @Message(value="Unknown script mode: '%s'", id=27506) CacheException unknownScriptProperty(String value)
    • noScriptEngineForScript

      @Message(value="Cannot find an appropriate script engine for script '%s'", id=27507) IllegalArgumentException noScriptEngineForScript(String name)
    • cannotInvokeScriptDirectly

      @Message(value="Script '%s' cannot be invoked directly since it specifies mode '%s'", id=27508) IllegalArgumentException cannotInvokeScriptDirectly(String scriptName, String property)
    • distributedTaskNeedCacheInBinding

      @Message(value="Distributed script '%s' invoked without a cache binding", id=27509) IllegalStateException distributedTaskNeedCacheInBinding(String scriptName)
    • parametersNotArray

      @Message(value="Script parameters must be declared using the unquoted array notation, e.g. [a,b,c]", id=27511) IllegalArgumentException parametersNotArray()
    • scriptsCanOnlyAccessNamedCaches

      @Message(value="Scripts can only access named caches", id=27512) IllegalArgumentException scriptsCanOnlyAccessNamedCaches()
    • propertiesNotObject

      @Message(value="Script properties must be declared using the unquoted object notation, e.g. {name: value}", id=27513) IllegalArgumentException propertiesNotObject()