rm README.OPENDAYLIGHT (badly outdated)
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / cli / src / main / java / __packageInPathFormat__ / cli / api / __classPrefix__CliCommands.java
1 #set( $symbol_pound = '#' )
2 #set( $symbol_dollar = '$' )
3 #set( $symbol_escape = '\' )
4 /*
5  * Copyright © ${copyrightYear} ${copyright} and others.  All rights reserved.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
9  * and is available at http://www.eclipse.org/legal/epl-v10.html
10  */
11 package ${package}.cli.api;
12
13 public interface ${classPrefix}CliCommands {
14
15     /**
16      * Define the Karaf command method signatures and the Javadoc for each.
17      * Below method is just an example
18      */
19     Object testCommand(Object testArgument);
20 }