[ 
https://issues.apache.org/jira/browse/HTTPCORE-461?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gary Gregory closed HTTPCORE-461.
---------------------------------
    Resolution: Fixed

In svn: 
https://svn.apache.org/repos/asf/httpcomponents/httpcore/branches/4.4.x/httpcore-nio

> 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 {{DefaultHttpServerIODispatch}} 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 DefaultHttpServerIODispatch create(final 
> NHttpServerEventHandler handler,
>             final SSLContext sslContext,
>             final ConnectionConfig config) {
>         return sslContext == null ? new DefaultHttpServerIODispatch(handler, 
> config)
>                 : new DefaultHttpServerIODispatch(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 DefaultHttpServerIODispatch create(final 
> NHttpServerEventHandler handler,
>             final SSLContext sslContext,
>             final SSLSetupHandler sslHandler,
>             final ConnectionConfig config) {
>         return sslContext == null ? new DefaultHttpServerIODispatch(handler, 
> config)
>                 : new DefaultHttpServerIODispatch(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]

Reply via email to