You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Gary Gregory (JIRA)" <ji...@apache.org> on 2017/05/04 22:16:04 UTC

[jira] [Updated] (HTTPCORE-461) Add factory methods to DefaultHttpServerIODispatch to handle a null SSLContext

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

Gary Gregory updated HTTPCORE-461:
----------------------------------
    Description: 
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}

  was:
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}


> 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: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org