CreateCommand constructor
CreateCommand()
Creates a CreateCommand and registers task and job creation subcommands.
Available subcommands:
task- Create a new distribution taskjob- Create a new job within an existing task
Implementation
CreateCommand() {
addSubcommand(CreateTaskCommand());
addSubcommand(CreateJobCommand());
}