Home / Class/ CustomCommand Class — spring-boot Architecture

CustomCommand Class — spring-boot Architecture

Architecture documentation for the CustomCommand class in CustomCommand.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

cli/spring-boot-cli/src/test/java/cli/command/CustomCommand.java lines 25–37

public class CustomCommand extends AbstractCommand {

	public CustomCommand() {
		super("custom", "Custom command added in tests");
	}

	@Override
	public ExitStatus run(String... args) throws Exception {
		System.err.println("Custom Command Hello");
		return ExitStatus.OK;
	}

}

Domain

Analyze Your Own Codebase

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

Try Supermodel Free