Package com.ibm.wsspi.ssl
Interface SSLSupport
public interface SSLSupport
Marker interface for configured SSL subsystem
- 
Method SummaryModifier and TypeMethodDescriptioncom.ibm.websphere.ssl.JSSEHelpercom.ibm.websphere.ssl.JSSEProviderObtain the default JSSE provider instance.com.ibm.websphere.ssl.JSSEProvidergetJSSEProvider(String providerName) Obtain the possible JSSE provider for the given name.Obtain a Liberty SSLSocketFactory.getSSLSocketFactory(String sslAlias) Obtain a Liberty SSLSocketFactory for a given SSL configuration.getSSLSocketFactory(Properties sslProps) Obtain a Liberty SSLSocketFactory for a given set of SSL properties.
- 
Method Details- 
getJSSEHelpercom.ibm.websphere.ssl.JSSEHelper getJSSEHelper()
- 
getJSSEProvidercom.ibm.websphere.ssl.JSSEProvider getJSSEProvider()Obtain the default JSSE provider instance.- Returns:
- JSSEProvider
 
- 
getJSSEProviderObtain the possible JSSE provider for the given name. This will return null if there was no match found.- Parameters:
- providerName-
- Returns:
- JSSEProvider
 
- 
getSSLSocketFactorySSLSocketFactory getSSLSocketFactory()Obtain a Liberty SSLSocketFactory.- Returns:
- SSLSocketFactory
 
- 
getSSLSocketFactoryObtain a Liberty SSLSocketFactory for a given SSL configuration.- Parameters:
- sslAlias- - name of a SSL configuration
- Returns:
- SSLSocketFactory
- Throws:
- SSLException
 
- 
getSSLSocketFactoryObtain a Liberty SSLSocketFactory for a given set of SSL properties.- Parameters:
- sslProps- - properties to create a SSL Socket factory
- Returns:
- SSLSocketFactory
- Throws:
- SSLException
 
 
-