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

There is a newer version: 2.0.0-alpha4
Show newest version
/*
 * Copyright (c) Aeontronix 2021
 */

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

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

@CommandLine.Command(name = "template", subcommands = {
        ApplicationTemplateCreateCmd.class,
        ApplicationTemplatePublishCmd.class
})
public class ApplicationTemplateCmd {
    @CommandLine.ParentCommand
    private ApplicationCmd parent;

    public ApplicationCmd getParent() {
        return parent;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy