Home / Class/ Key Class — spring-boot Architecture

Key Class — spring-boot Architecture

Architecture documentation for the Key class in SslBundleProperties.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/ssl/SslBundleProperties.java lines 109–137

	public static class Key {

		/**
		 * The password used to access the key in the key store.
		 */
		private @Nullable String password;

		/**
		 * The alias that identifies the key in the key store.
		 */
		private @Nullable String alias;

		public @Nullable String getPassword() {
			return this.password;
		}

		public void setPassword(@Nullable String password) {
			this.password = password;
		}

		public @Nullable String getAlias() {
			return this.alias;
		}

		public void setAlias(@Nullable String alias) {
			this.alias = alias;
		}

	}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free