Interface JGroupsLogger

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

    @MessageLogger(projectCode="DGJGRP",
                   length=4)
    public interface JGroupsLogger
    extends org.jboss.logging.BasicLogger
    Author:
    James R. Perkins, David M. Lloyd
    • Method Detail

      • activatingSubsystem

        @LogMessage(level=INFO)
        @Message(id=1,
                 value="Activating JGroups subsystem.")
        void activatingSubsystem()
        Logs an informational message indicating the JGroups subsystem is being activated.
      • setProtocolPropertyValue

        @LogMessage(level=TRACE)
        @Message(id=2,
                 value="Setting %s.%s=%d")
        void setProtocolPropertyValue​(String protocol,
                                      String property,
                                      Object value)
      • nonExistentProtocolPropertyValue

        @LogMessage(level=TRACE)
        @Message(id=3,
                 value="Failed to set non-existent %s.%s=%d")
        void nonExistentProtocolPropertyValue​(@Cause
                                              Throwable cause,
                                              String protocolName,
                                              String propertyName,
                                              Object propertyValue)
      • couldNotSetAddressAndPortNoMulticastSocket

        @LogMessage(level=TRACE)
        @Message(id=4,
                 value="Could not set %s.%s and %s.%s, %s socket binding does not specify a multicast socket")
        void couldNotSetAddressAndPortNoMulticastSocket​(@Cause
                                                        Throwable cause,
                                                        String protocolName,
                                                        String addressProperty,
                                                        String protocolNameAgain,
                                                        String portProperty,
                                                        String bindingName)
      • unableToAccessProtocolPropertyValue

        @LogMessage(level=ERROR)
        @Message(id=5,
                 value="Error accessing original value for property %s of protocol %s")
        void unableToAccessProtocolPropertyValue​(@Cause
                                                 Throwable cause,
                                                 String propertyName,
                                                 String protocolName)
      • unableToOverrideSocketBindingValue

        @LogMessage(level=WARN)
        @Message(id=6,
                 value="property %s for protocol %s attempting to override socket binding value %s : property value %s will be ignored")
        void unableToOverrideSocketBindingValue​(String propertyName,
                                                String protocolName,
                                                String bindingName,
                                                Object propertyValue)
      • parserFailure

        @Message(id=7,
                 value="Failed to parse %s")
        String parserFailure​(URL url)
        A message indicating a file could not be parsed.
        Parameters:
        url - the path to the file.
        Returns:
        the message.
      • notFound

        @Message(id=8,
                 value="Failed to locate %s")
        String notFound​(String resource)
        A message indicating a resource could not be located.
        Parameters:
        resource - the resource that could not be located.
        Returns:
        the message.
      • duplicateNodeName

        @Message(id=9,
                 value="A node named %s already exists in this cluster. Perhaps there is already a server running on this host? If so, restart this server with a unique node name, via -Djboss.node.name=<node-name>")
        IllegalStateException duplicateNodeName​(String name)
      • transportNotDefined

        @Message(id=10,
                 value="Transport for stack %s is not defined. Please specify both a transport and protocol list, either as optional parameters to add() or via batching.")
        org.jboss.as.controller.OperationFailedException transportNotDefined​(String stackName)
      • protocolListNotDefined

        @Message(id=11,
                 value="Protocol list for stack %s is not defined. Please specify both a transport and protocol list, either as optional parameters to add() or via batching.")
        org.jboss.as.controller.OperationFailedException protocolListNotDefined​(String stackName)
      • protocolAlreadyDefined

        @Message(id=12,
                 value="Protocol with relative path %s is already defined.")
        org.jboss.as.controller.OperationFailedException protocolAlreadyDefined​(String relativePath)
      • protocolNotDefined

        @Message(id=13,
                 value="Protocol with relative path %s is not defined.")
        org.jboss.as.controller.OperationFailedException protocolNotDefined​(String relativePath)
      • propertyNotDefined

        @Message(id=14,
                 value="Property %s for protocol with relative path %s is not defined.")
        org.jboss.as.controller.OperationFailedException propertyNotDefined​(String propertyName,
                                                                            String protocolRelativePath)
      • unknownMetric

        @Message(id=15,
                 value="Unknown metric %s")
        String unknownMetric​(String metricName)
      • unableToLoadProtocolClass

        @Message(id=16,
                 value="Unable to load protocol class %s")
        org.jboss.as.controller.OperationFailedException unableToLoadProtocolClass​(String protocolName)
      • privilegedAccessExceptionForAttribute

        @Message(id=17,
                 value="Privileged access exception on attribute/method %s")
        String privilegedAccessExceptionForAttribute​(String attrName)
      • instantiationExceptionOnConverterForAttribute

        @Message(id=18,
                 value="Instantiation exception on converter for attribute/method %s")
        String instantiationExceptionOnConverterForAttribute​(String attrName)
      • protocolNotFoundInStack

        @Message(id=19,
                 value="Protocol %s not found in current stack")
        String protocolNotFoundInStack​(String protocolName)
      • unableToLoadProtocol

        @Message(id=20,
                 value="Unable to load protocol class %s")
        String unableToLoadProtocol​(String protocolName)
      • threadsAttributesUsedInRuntime

        @Message(id=21,
                 value="Attributes referencing threads subsystem can only be used to support older slaves in the domain.")
        String threadsAttributesUsedInRuntime()
      • unauthorizedNodeJoin

        @Message(id=100,
                 value="Unauthorized node %s attempting to join cluster.")
        SecurityException unauthorizedNodeJoin​(String nodeName)
      • receivedXSiteClusterView

        @LogMessage(level=INFO)
        @Message(id=101,
                 value="Received new x-site view: %s")
        void receivedXSiteClusterView​(Set<String> view)