All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aeontronix.enhancedmule.tools.cli.application.template.ApplicationTemplateCmd Maven / Gradle / Ivy

/*
 * Copyright (c) Aeontronix 2021
 */

package com.aeontronix.enhancedmule.tools.cli.application.template;

import com.aeontronix.enhancedmule.tools.cli.application.ApplicationCmd;
import com.aeontronix.enhancedmule.tools.cli.application.ApplicationCreateCmd;
import picocli.CommandLine;

@CommandLine.Command(name = "template", subcommands = {
        ApplicationTemplateCreateCmd.class,
        ApplicationTemplatePublishCmd.class
})
public class ApplicationTemplateCmd {
    @CommandLine.ParentCommand
    private ApplicationCmd parent;
    @CommandLine.Option(names = {"?", "-h", "--help"}, usageHelp = true, description = "display this help message")
    boolean usageHelpRequested;

    public ApplicationCmd getParent() {
        return parent;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy