DockerHost Class — spring-boot Architecture
Architecture documentation for the DockerHost class in DockerHost.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/configuration/DockerHost.java lines 27–57
public class DockerHost {
private final @Nullable String address;
private final boolean secure;
private final @Nullable String certificatePath;
public DockerHost(@Nullable String address) {
this(address, false, null);
}
public DockerHost(@Nullable String address, boolean secure, @Nullable String certificatePath) {
this.address = address;
this.secure = secure;
this.certificatePath = certificatePath;
}
public @Nullable String getAddress() {
return this.address;
}
public boolean isSecure() {
return this.secure;
}
public @Nullable String getCertificatePath() {
return this.certificatePath;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free