X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Farchetypes%2Fopendaylight-startup%2Fsrc%2Fmain%2Fresources%2Farchetype-resources%2Fcli%2Fsrc%2Fmain%2Fjava%2F__packageInPathFormat__%2Fcli%2Fapi%2F__classPrefix__CliCommands.java;fp=opendaylight%2Farchetypes%2Fopendaylight-startup%2Fsrc%2Fmain%2Fresources%2Farchetype-resources%2Fcli%2Fsrc%2Fmain%2Fjava%2F__packageInPathFormat__%2Fcli%2Fapi%2F__classPrefix__CliCommands.java;h=b1ec6cea1e56738b4b44ce9de2566b66e8e1cc5d;hp=0000000000000000000000000000000000000000;hb=e64a4f7e0af0f6069658b5c2063fa7e79cb45c30;hpb=7c912dbbd4fefc97229bd0bdbb9d46391507ec9c diff --git a/opendaylight/archetypes/opendaylight-startup/src/main/resources/archetype-resources/cli/src/main/java/__packageInPathFormat__/cli/api/__classPrefix__CliCommands.java b/opendaylight/archetypes/opendaylight-startup/src/main/resources/archetype-resources/cli/src/main/java/__packageInPathFormat__/cli/api/__classPrefix__CliCommands.java new file mode 100644 index 0000000000..b1ec6cea1e --- /dev/null +++ b/opendaylight/archetypes/opendaylight-startup/src/main/resources/archetype-resources/cli/src/main/java/__packageInPathFormat__/cli/api/__classPrefix__CliCommands.java @@ -0,0 +1,20 @@ +#set( $symbol_pound = '#' ) +#set( $symbol_dollar = '$' ) +#set( $symbol_escape = '\' ) +/* + * Copyright © ${copyrightYear} ${copyright} and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ +package ${package}.cli.api; + +public interface ${classPrefix}CliCommands { + + /** + * Define the Karaf command method signatures and the Javadoc for each. + * Below method is just an example + */ + Object testCommand(Object testArgument); +}