Interface Messages

    • Method Detail

      • connectionError

        @Message(id=200,
                 value="Remote connection failed: %s")
        @LogMessage(level=DEBUG)
        void connectionError​(IOException cause)
      • invalidMessage

        @Message(id=201,
                 value="Received invalid message on %s")
        IOException invalidMessage​(Object connection)
      • abruptClose

        @Message(id=202,
                 value="Abrupt close on %s")
        IOException abruptClose​(Object connection)
      • bufferUnderflowRaw

        @LogMessage(level=WARN)
        @Message(id=203,
                 value="Message missing protocol byte")
        void bufferUnderflowRaw()
      • bufferUnderflow

        @LogMessage(level=WARN)
        @Message(id=204,
                 value="Buffer underflow parsing message with protocol ID %02x")
        void bufferUnderflow​(int id)
      • failedToAccept

        @LogMessage(level=DEBUG)
        @Message(id=205,
                 value="Failed to accept a connection: %s")
        void failedToAccept​(Exception e)
      • channelNotOpen

        @Message(id=206,
                 value="Channel is not open")
        NotOpenException channelNotOpen()
      • channelBusy

        @Message(id=207,
                 value="Failed to send a message (channel is busy)")
        ChannelBusyException channelBusy()
      • writeInterrupted

        @Message(id=208,
                 value="Write operation interrupted")
        InterruptedIOException writeInterrupted()
      • exceptionInUserHandler

        @LogMessage(level=ERROR)
        @Message(id=209,
                 value="An exception occurred in a message handler")
        void exceptionInUserHandler​(@Cause
                                    Throwable throwable)
      • duplicateMessageId

        @LogMessage(level=FATAL)
        @Message(id=210,
                 value="Internal Error: received a message with duplicate ID %d from %s")
        void duplicateMessageId​(short messageId,
                                SocketAddress peerAddress)
      • duplicateMessageIdException

        @Message("Internal Error: received a message with a duplicate ID")
        IOException duplicateMessageIdException()
      • invalidWorker

        @Message(id=211,
                 value="Invalid XNIO worker; the worker must match the Remoting Endpoint worker")
        IllegalArgumentException invalidWorker()
      • failedToConfigureSslContext

        @Message(id=212,
                 value="Failed to configure SSL context")
        IOException failedToConfigureSslContext​(@Cause
                                                Throwable cause)
      • unknownProtocolId

        @LogMessage(level=TRACE)
        @Message("Message with unknown protocol ID %d received")
        void unknownProtocolId​(int id)
      • rejectedInvalidMechanism

        @LogMessage(level=TRACE)
        @Message("Rejected invalid SASL mechanism %s")
        void rejectedInvalidMechanism​(String name)
      • authenticationExceptionIo

        @Message(id=300,
                 value="Authentication failed due to I/O error")
        org.wildfly.security.auth.AuthenticationException authenticationExceptionIo​(@Cause
                                                                                    IOException e)
      • mechanismNameTooLong

        @Message(id=301,
                 value="Mechanism name \"%s\" is too long")
        IOException mechanismNameTooLong​(String mechName)
      • authenticationMessageTooLarge

        @Message(id=302,
                 value="Authentication message too large")
        IOException authenticationMessageTooLarge()
      • authenticationExtraResponse

        @Message(id=303,
                 value="Authentication protocol failed (extra response)")
        org.wildfly.security.auth.AuthenticationException authenticationExtraResponse()
      • serverRejectedAuthentication

        @Message(id=304,
                 value="Server rejected authentication")
        org.wildfly.security.auth.AuthenticationException serverRejectedAuthentication()
      • authenticationExceptionClosed

        @Message(id=305,
                 value="Authentication failed (connection closed)")
        org.wildfly.security.auth.AuthenticationException authenticationExceptionClosed()
      • authenticationNoSaslClient

        @Message(id=306,
                 value="Authentication failed (SASL client construction failure)")
        org.wildfly.security.auth.AuthenticationException authenticationNoSaslClient​(@Cause
                                                                                     SaslException e)
      • authenticationInterrupted

        @Message(id=307,
                 value="Authentication interrupted")
        org.wildfly.security.auth.AuthenticationException authenticationInterrupted()
      • noAuthMechanismsLeft

        @Message(id=308,
                 value="Authentication failed (no mechanisms left), tried: %s")
        org.wildfly.security.auth.AuthenticationException noAuthMechanismsLeft​(String triedStr)
      • authenticationNotSupported

        @Message(id=309,
                 value="Authentication not supported for this peer")
        org.wildfly.security.auth.AuthenticationException authenticationNotSupported()