Interface MessageProcessor
- All Known Subinterfaces:
ClientMessageProcessor, ServerMessageProcessor, TlsClientEngine, TlsEngine, TlsServerEngine
- All Known Implementing Classes:
TlsClientEngineImpl, TlsEngineImpl, TlsServerEngineImpl
public interface MessageProcessor
-
Method Summary
Modifier and TypeMethodDescriptionvoidreceived(CertificateMessage cm, ProtectionKeysType protectedBy) voidreceived(CertificateRequestMessage cr, ProtectionKeysType protectedBy) voidreceived(CertificateVerifyMessage cv, ProtectionKeysType protectedBy) voidreceived(ClientHello ch, ProtectionKeysType protectedBy) voidreceived(EncryptedExtensions ee, ProtectionKeysType protectedBy) voidreceived(FinishedMessage fm, ProtectionKeysType protectedBy) default voidreceived(HandshakeMessage msg, ProtectionKeysType protectedBy) voidreceived(NewSessionTicketMessage nst, ProtectionKeysType protectedBy) voidreceived(ServerHello sh, ProtectionKeysType protectedBy)
-
Method Details
-
received
default void received(HandshakeMessage msg, ProtectionKeysType protectedBy) throws TlsProtocolException, IOException - Throws:
TlsProtocolExceptionIOException
-
received
void received(ClientHello ch, ProtectionKeysType protectedBy) throws TlsProtocolException, IOException - Throws:
TlsProtocolExceptionIOException
-
received
void received(ServerHello sh, ProtectionKeysType protectedBy) throws TlsProtocolException, IOException - Throws:
TlsProtocolExceptionIOException
-
received
void received(EncryptedExtensions ee, ProtectionKeysType protectedBy) throws TlsProtocolException, IOException - Throws:
TlsProtocolExceptionIOException
-
received
void received(CertificateMessage cm, ProtectionKeysType protectedBy) throws TlsProtocolException, IOException - Throws:
TlsProtocolExceptionIOException
-
received
void received(CertificateVerifyMessage cv, ProtectionKeysType protectedBy) throws TlsProtocolException, IOException - Throws:
TlsProtocolExceptionIOException
-
received
void received(FinishedMessage fm, ProtectionKeysType protectedBy) throws TlsProtocolException, IOException - Throws:
TlsProtocolExceptionIOException
-
received
void received(NewSessionTicketMessage nst, ProtectionKeysType protectedBy) throws TlsProtocolException, IOException - Throws:
TlsProtocolExceptionIOException
-
received
void received(CertificateRequestMessage cr, ProtectionKeysType protectedBy) throws TlsProtocolException, IOException - Throws:
TlsProtocolExceptionIOException
-