Package io.micronaut.servlet.http
Interface SSLSessionProvider
@Internal
public interface SSLSessionProvider
This interface helps micronaut to extract
SSLSession
from different servlet frameworks.- Since:
- 5.2.2
- Author:
- Nemanja Mikic.
-
Method Summary
Modifier and TypeMethodDescriptiongetSSLSession
(@NonNull io.micronaut.core.attr.AttributeHolder attributeHolder) Extracts theSSLSession
from attributes.
-
Method Details
-
getSSLSession
Optional<SSLSession> getSSLSession(@NonNull @NonNull io.micronaut.core.attr.AttributeHolder attributeHolder) Extracts theSSLSession
from attributes.- Parameters:
attributeHolder
- the attribute holder- Returns:
- the
SSLSession
if found otherwise empty.
-