Package org.refcodes.net
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 HttpsConnectionRequestObserverAn observer being notified by incoming HTTPS requests which might have been registered viaHttpsConnectionRequestObservable.onConnectionRequest(HttpsConnectionRequestObserver)possibly using lambda syntax.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonHttpsConnectionRequest(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. TheSSLParameterscan be modified according to the remote address issuing the request.- Parameters:
aLocalAddress- TheInetSocketAddressof the receiver of the request.aRemoteAddress- The remote client'sInetSocketAddress.aHttpsParams- TheSSLParameterswhich may be modified in accordance to the remote address.
-
-