public class SSLMessage extends BootstrapMessage
Handles SSL bootstrap message. Since we do not do SSL (connection is expected to be through localhost after all), we decline the first message, and send an error for subsequent ones.
Static Fields
IDENTIFIER
public static final int IDENTIFIER
Type | Description |
int |
Constructors
SSLMessage(ConnectionHandler connection)
public SSLMessage(ConnectionHandler connection)
Name | Description |
connection | ConnectionHandler |
Methods
getIdentifier()
protected String getIdentifier()
Used for logging.
Type | Description |
String |
getMessageName()
protected String getMessageName()
Used for logging.
Type | Description |
String |
getPayloadString()
protected String getPayloadString()
Used for logging.
Type | Description |
String |
nextHandler()
public void nextHandler()
Here we send another bootstrap factory, since we ignore SSL.
Type | Description |
Exception |
sendPayload()
protected void sendPayload()
Override this method to include post-processing and metadata in the sending process. Template method for send.
Type | Description |
Exception |