Home / Type/ SslBundleRegistry Type — spring-boot Architecture

SslBundleRegistry Type — spring-boot Architecture

Architecture documentation for the SslBundleRegistry type/interface in SslBundleRegistry.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/main/java/org/springframework/boot/ssl/SslBundleRegistry.java lines 26–44

public interface SslBundleRegistry {

	/**
	 * Register a named {@link SslBundle}.
	 * @param name the bundle name
	 * @param bundle the bundle
	 */
	void registerBundle(String name, SslBundle bundle);

	/**
	 * Updates an {@link SslBundle}.
	 * @param name the bundle name
	 * @param updatedBundle the updated bundle
	 * @throws NoSuchSslBundleException if the bundle cannot be found
	 * @since 3.2.0
	 */
	void updateBundle(String name, SslBundle updatedBundle) throws NoSuchSslBundleException;

}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free