接口 SslBundleRegistry
- 所有已知实现类:
DefaultSslBundleRegistry
public interface SslBundleRegistry
Interface that can be used to register an
SslBundle
for a given name.- 从以下版本开始:
- 3.1.0
- 作者:
- Scott Frederick, Moritz Halbritter
-
方法概要
修饰符和类型方法说明void
registerBundle
(String name, SslBundle bundle) Register a namedSslBundle
.void
updateBundle
(String name, SslBundle updatedBundle) Updates anSslBundle
.
-
方法详细资料
-
registerBundle
Register a namedSslBundle
.- 参数:
name
- the bundle namebundle
- the bundle
-
updateBundle
Updates anSslBundle
.- 参数:
name
- the bundle nameupdatedBundle
- the updated bundle- 抛出:
NoSuchSslBundleException
- if the bundle cannot be found- 从以下版本开始:
- 3.2.0
-