Interface HttpsConnectionRequestObserver

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.


    @FunctionalInterface
    public interface HttpsConnectionRequestObserver
    An observer being notified by incoming HTTPS requests which might have been registered via HttpsConnectionRequestObservable.onConnectionRequest(HttpsConnectionRequestObserver) possibly using lambda syntax.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onHttpsConnectionRequest​(java.net.InetSocketAddress aLocalAddress, java.net.InetSocketAddress aRemoteAddress, javax.net.ssl.SSLParameters aHttpsParams)
      Invoked upon an incoming HTTPS request.
    • Method Detail

      • onHttpsConnectionRequest

        void onHttpsConnectionRequest​(java.net.InetSocketAddress aLocalAddress,
                                      java.net.InetSocketAddress aRemoteAddress,
                                      javax.net.ssl.SSLParameters aHttpsParams)
        Invoked upon an incoming HTTPS request. The SSLParameters can be modified according to the remote address issuing the request.
        Parameters:
        aLocalAddress - The InetSocketAddress of the receiver of the request.
        aRemoteAddress - The remote client's InetSocketAddress.
        aHttpsParams - The SSLParameters which may be modified in accordance to the remote address.