Gary Gregory created HTTPCORE-461:
-------------------------------------
Summary: Add factory methods to DefaultHttpServerIODispatch to
handle a null SSLContext
Key: HTTPCORE-461
URL: https://issues.apache.org/jira/browse/HTTPCORE-461
Project: HttpComponents HttpCore
Issue Type: Improvement
Reporter: Gary Gregory
Assignee: Gary Gregory
Fix For: 4.4.7
Add factory methods to {{DefaultHttpClientIODispatch}} to handle a null
{{SSLContext}}:
{code:java}
/**
* Creates a new instance of this class to be used for dispatching I/O event
* notifications to the given protocol handler.
*
* @param handler the client protocol handler.
* @param sslContext an SSLContext or null (for a plain text connection.)
* @param config a connection configuration
* @return a new instance
* @since 4.4.7
*/
public static DefaultHttpClientIODispatch create(final
NHttpClientEventHandler handler,
final SSLContext sslContext,
final ConnectionConfig config) {
return sslContext == null ? new DefaultHttpClientIODispatch(handler,
config)
: new DefaultHttpClientIODispatch(handler, sslContext, config);
}
/**
* Creates a new instance of this class to be used for dispatching I/O event
* notifications to the given protocol handler.
*
* @param handler the client protocol handler.
* @param sslContext an SSLContext or null (for a plain text connection.)
* @param sslHandler customizes various aspects of the TLS/SSL protocol.
* @param config a connection configuration
* @return a new instance
* @since 4.4.7
*/
public static DefaultHttpClientIODispatch create(final
NHttpClientEventHandler handler,
final SSLContext sslContext,
final SSLSetupHandler sslHandler,
final ConnectionConfig config) {
return sslContext == null ? new DefaultHttpClientIODispatch(handler,
config)
: new DefaultHttpClientIODispatch(handler, sslContext,
sslHandler, config);
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]