Package net.solarnetwork.service
Interface SSLService
- All Known Implementing Classes:
ConfigurableSSLService
public interface SSLService
API for SSL supporting functions.
- Version:
- 1.1
- Author:
- matt
-
Method Summary
Modifier and TypeMethodDescriptionGet a key manager factory, configured appropriately for the application.Get a SSL socket factory, configured appropriately for the application.Get a trust manager factory, configured appropriately for the application.
-
Method Details
-
getSSLSocketFactory
SSLSocketFactory getSSLSocketFactory()Get a SSL socket factory, configured appropriately for the application.This method may return a singleton object.
- Returns:
- the factory
-
getTrustManagerFactory
TrustManagerFactory getTrustManagerFactory()Get a trust manager factory, configured appropriately for the application.This method may return a singleton object.
- Returns:
- the factory
- Since:
- 1.1
-
getKeyManagerFactory
KeyManagerFactory getKeyManagerFactory()Get a key manager factory, configured appropriately for the application.This method may return a singleton object.
- Returns:
- the factory
- Since:
- 1.1
-