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

customizeSecurityOptions() — spring-boot Function Reference

Architecture documentation for the customizeSecurityOptions() function in BootBuildImage.java from the spring-boot codebase.

Function java Archiving LauncherConfig calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  fb3475a4_9fed_529a_1426_29de7a47b5cb["customizeSecurityOptions()"]
  44bdad37_cd41_021a_4a76_b2999cac6a5a["customize()"]
  44bdad37_cd41_021a_4a76_b2999cac6a5a -->|calls| fb3475a4_9fed_529a_1426_29de7a47b5cb
  6c58b678_bfa7_581d_1a07_1d3e8a124d3e["getSecurityOptions()"]
  fb3475a4_9fed_529a_1426_29de7a47b5cb -->|calls| 6c58b678_bfa7_581d_1a07_1d3e8a124d3e
  style fb3475a4_9fed_529a_1426_29de7a47b5cb fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/bundling/BootBuildImage.java lines 529–537

	private BuildRequest customizeSecurityOptions(BuildRequest request) {
		if (getSecurityOptions().isPresent()) {
			List<String> securityOptions = getSecurityOptions().getOrNull();
			if (securityOptions != null) {
				return request.withSecurityOptions(securityOptions);
			}
		}
		return request;
	}

Domain

Subdomains

Called By

Frequently Asked Questions

What does customizeSecurityOptions() do?
customizeSecurityOptions() is a function in the spring-boot codebase.
What does customizeSecurityOptions() call?
customizeSecurityOptions() calls 1 function(s): getSecurityOptions.
What calls customizeSecurityOptions()?
customizeSecurityOptions() is called by 1 function(s): customize.

Analyze Your Own Codebase

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

Try Supermodel Free