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

ImageName() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  2005a9e6_c261_9d5b_8cfe_33943b6d522a["ImageName()"]
  cf1ac3fd_e688_8452_d6a0_046a45830184["of()"]
  cf1ac3fd_e688_8452_d6a0_046a45830184 -->|calls| 2005a9e6_c261_9d5b_8cfe_33943b6d522a
  e3f689ee_2679_0fb5_42e7_15065f6d67d8["getDomainOrDefault()"]
  2005a9e6_c261_9d5b_8cfe_33943b6d522a -->|calls| e3f689ee_2679_0fb5_42e7_15065f6d67d8
  10cebd18_f92b_93f7_9f93_fb1433a01e79["getNameWithDefaultPath()"]
  2005a9e6_c261_9d5b_8cfe_33943b6d522a -->|calls| 10cebd18_f92b_93f7_9f93_fb1433a01e79
  style 2005a9e6_c261_9d5b_8cfe_33943b6d522a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/type/ImageName.java lines 46–51

	ImageName(@Nullable String domain, String path) {
		Assert.hasText(path, "'path' must not be empty");
		this.domain = getDomainOrDefault(domain);
		this.name = getNameWithDefaultPath(this.domain, path);
		this.string = this.domain + "/" + this.name;
	}

Subdomains

Called By

Frequently Asked Questions

What does ImageName() do?
ImageName() is a function in the spring-boot codebase.
What does ImageName() call?
ImageName() calls 2 function(s): getDomainOrDefault, getNameWithDefaultPath.
What calls ImageName()?
ImageName() is called by 1 function(s): of.

Analyze Your Own Codebase

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

Try Supermodel Free