Home / Function/ options() — spring-boot Function Reference

options() — spring-boot Function Reference

Architecture documentation for the options() function in EncodePasswordCommand.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  9007f598_7dfc_eab8_8948_33966d419167["options()"]
  72c188a0_4103_8650_a18d_d0e58bae59e0["options()"]
  9007f598_7dfc_eab8_8948_33966d419167 -->|calls| 72c188a0_4103_8650_a18d_d0e58bae59e0
  a6dc86e5_eff8_52b5_97cf_7be58ac8b305["option()"]
  9007f598_7dfc_eab8_8948_33966d419167 -->|calls| a6dc86e5_eff8_52b5_97cf_7be58ac8b305
  style 9007f598_7dfc_eab8_8948_33966d419167 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

cli/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/encodepassword/EncodePasswordCommand.java lines 85–93

		@Override
		protected void options() {
			this.algorithm = option(Arrays.asList("algorithm", "a"),
					"The algorithm to use. Supported algorithms: "
							+ StringUtils.collectionToDelimitedString(ENCODERS.keySet(), ", ")
							+ ". The default algorithm uses bcrypt")
				.withRequiredArg()
				.defaultsTo("default");
		}

Domain

Subdomains

Frequently Asked Questions

What does options() do?
options() is a function in the spring-boot codebase.
What does options() call?
options() calls 2 function(s): option, options.

Analyze Your Own Codebase

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

Try Supermodel Free