DefaultOwner Class — spring-boot Architecture
Architecture documentation for the DefaultOwner class in DefaultOwner.java from the spring-boot codebase.
Entity Profile
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/io/DefaultOwner.java lines 25–51
class DefaultOwner implements Owner {
private final long uid;
private final long gid;
DefaultOwner(long uid, long gid) {
this.uid = uid;
this.gid = gid;
}
@Override
public long getUid() {
return this.uid;
}
@Override
public long getGid() {
return this.gid;
}
@Override
public String toString() {
return this.uid + "/" + this.gid;
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free