Interface Log

All Superinterfaces:
org.jboss.logging.BasicLogger

@MessageLogger(projectCode="ISPN") @ValidIdRange(min=6001, max=7000) public interface Log extends org.jboss.logging.BasicLogger
Log abstraction for the Hot Rod server module. For this module, message ids ranging from 6001 to 7000 inclusively have been reserved.
Since:
5.0
Author:
Galder ZamarreƱo
  • Field Details

    • CONFIG

      static final Log CONFIG
  • Method Details

    • errorDetectingCrashedMember

      @LogMessage(level=ERROR) @Message(value="Error detecting crashed member", id=6002) void errorDetectingCrashedMember(@Cause Throwable t)
    • invalidOperation

      @Message(value="The requested operation is invalid", id=6007) UnsupportedOperationException invalidOperation()
    • unexpectedEvent

      @Message(value="Event not handled by current Hot Rod event implementation: \'%s\'", id=6009) IllegalStateException unexpectedEvent(Event e)
    • warnConditionalOperationNonTransactional

      @LogMessage(level=WARN) @Message(value="Conditional operation \'%s\' should be used with transactional caches, otherwise data inconsistency issues could arise under failure situations", id=6010) @Once void warnConditionalOperationNonTransactional(String op)
    • warnForceReturnPreviousNonTransactional

      @LogMessage(level=WARN) @Message(value="Operation \'%s\' forced to return previous value should be used on transactional caches, otherwise data inconsistency issues could arise under failure situations", id=6011) @Once void warnForceReturnPreviousNonTransactional(String op)
    • missingCacheEventFactory

      @Message(value="Listener %s factory \'%s\' not found in server", id=6013) MissingFactoryException missingCacheEventFactory(String factoryType, String name)
    • illegalFilterConverterEventFactory

      @Message(value="Trying to add a filter and converter factory with name \'%s\' but it does not extend CacheEventFilterConverterFactory", id=6014) IllegalStateException illegalFilterConverterEventFactory(String name)
    • unauthorizedOperation

      @Message(value="Operation \'%s\' requires authentication", id=6017) SecurityException unauthorizedOperation(String op)
    • missingHostAddress

      @Message(value="A host or proxyHost address has not been specified", id=6019) CacheConfigurationException missingHostAddress()
    • expectedTransactionalCache

      @Message(value="Cache \'%s\' is not transactional to execute a client transaction", id=6020) IllegalStateException expectedTransactionalCache(String cacheName)
    • unexpectedIsolationLevel

      @Message(value="Cache \'%s\' must have REPEATABLE_READ isolation level", id=6021) IllegalStateException unexpectedIsolationLevel(String cacheName)
    • skippingMarshallerWrapping

      @LogMessage(level=WARN) @Message(value="Not wrapping custom marshaller with media type \'%s\' since the format is already supported by the server", id=6022) @Once void skippingMarshallerWrapping(String mediaType)
    • errorSerializingResponse

      @Message(value="Error serializing script response \'%s\'", id=6023) EncodingException errorSerializingResponse(Object o)
    • authenticationException

      @Message(value="Invalid credentials", id=6024) SecurityException authenticationException(@Cause Throwable cause)
    • invalidMech

      @Message(value="Invalid mech \'%s\'", id=6025) IllegalArgumentException invalidMech(String mech)
    • clientNotUpdatingTopology

      @LogMessage(level=WARN) @Message(value="Client %s keeps providing outdated topology %s", id=6026) void clientNotUpdatingTopology(SocketAddress socketAddress, int topologyId)