Home / Class/ TestDefaultSslManagerBundle Class — spring-boot Architecture

TestDefaultSslManagerBundle Class — spring-boot Architecture

Architecture documentation for the TestDefaultSslManagerBundle class in DefaultSslManagerBundleTests.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/ssl/DefaultSslManagerBundleTests.java lines 139–155

	class TestDefaultSslManagerBundle extends DefaultSslManagerBundle {

		TestDefaultSslManagerBundle(@Nullable SslStoreBundle storeBundle, @Nullable SslBundleKey key) {
			super(storeBundle, key);
		}

		@Override
		protected KeyManagerFactory getKeyManagerFactoryInstance(String algorithm) throws NoSuchAlgorithmException {
			return DefaultSslManagerBundleTests.this.keyManagerFactory;
		}

		@Override
		protected TrustManagerFactory getTrustManagerFactoryInstance(String algorithm) throws NoSuchAlgorithmException {
			return DefaultSslManagerBundleTests.this.trustManagerFactory;
		}

	}

Analyze Your Own Codebase

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

Try Supermodel Free