Example usage for org.springframework.boot.cli.command.init InitCommand InitCommand

List of usage examples for org.springframework.boot.cli.command.init InitCommand InitCommand

Introduction

In this page you can find the example usage for org.springframework.boot.cli.command.init InitCommand InitCommand.

Prototype

public InitCommand(InitOptionHandler handler) 

Source Link

Usage

From source file:org.springframework.boot.cli.command.init.InitCommandTests.java

public InitCommandTests() {
    InitializrService initializrService = new InitializrService(this.http);
    this.handler = new TestableInitCommandOptionHandler(initializrService);
    this.command = new InitCommand(this.handler);
}