view common/core/src/main/java/com/redhat/thermostat/common/cli/CommandInfo.java @ 651:205565370bab

Move command usage to properties file Reviewed-by: sgehwolf Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2012-September/003395.html
author Jon VanAlten <vanaltj@gmail.com>
date Tue, 02 Oct 2012 17:43:38 -0400
parents 486a299ab905
children e88742733601
line wrap: on
line source

package com.redhat.thermostat.common.cli;

import java.util.List;

public interface CommandInfo {

    public String getName();

    public String getDescription();

    public String getUsage();

    public List<String> getDependencyResourceNames();

}