update docs

This commit is contained in:
Costin Leau
2012-07-18 16:18:41 +03:00
parent b7a0ebf505
commit ed0166eaae
2 changed files with 16 additions and 15 deletions

View File

@@ -35,9 +35,6 @@
<programlisting language="java">package org.springframework.shell.samples.helloworld.commands;
import java.util.logging.Logger;
import org.springframework.shell.core.CommandMarker;
import org.springframework.shell.core.annotation.CliAvailabilityIndicator;
import org.springframework.shell.core.annotation.CliCommand;
@@ -47,8 +44,6 @@ import org.springframework.stereotype.Component;
@Component
public class HelloWorldCommands implements CommandMarker {
protected final Logger LOG = Logger.getLogger(getClass().getName());
private boolean simpleCommandExecuted = false;
@CliAvailabilityIndicator({"hw simple"})
@@ -67,27 +62,27 @@ public class HelloWorldCommands implements CommandMarker {
}
@CliCommand(value = "hw simple", help = "Print a simple hello world message")
public void simple(
public String simple(
@CliOption(key = { "message" }, mandatory = true, help = "The hello world message") final String message,
@CliOption(key = { "location" }, mandatory = false, help = "Where you are saying hello", specifiedDefaultValue="At work") final String location) {
LOG.info("Message = [" + message + "] Location = [" + location + "]");
simpleCommandExecuted = true;
return "Message = [" + message + "] Location = [" + location + "]";
}
@CliCommand(value = "hw complex", help = "Print a complex hello world message")
public void hello(
public String hello(
@CliOption(key = { "message" }, mandatory = true, help = "The hello world message") final String message,
@CliOption(key = { "name1"}, mandatory = true, help = "Say hello to the first name") final String name1,
@CliOption(key = { "name2" }, mandatory = true, help = "Say hello to a second name") final String name2,
@CliOption(key = { "time" }, mandatory = false, specifiedDefaultValue="now", help = "When you are saying hello") final String time,
@CliOption(key = { "location" }, mandatory = false, help = "Where you are saying hello") final String location) {
LOG.info("Hello " + name1 + " and " + name2 + ". Your special message is " + message + ". time=[" + time + "] location=[" + location + "]");
return "Hello " + name1 + " and " + name2 + ". Your special message is " + message + ". time=[" + time + "] location=[" + location + "]";
}
@CliCommand(value = "hw enum", help = "Print a simple hello world message from an enumerated value")
public void eenum(
public String eenum(
@CliOption(key = { "message" }, mandatory = true, help = "The hello world message") final MessageType message){
LOG.info("Hello. You special enumerated message is " + message);
return "Hello. Your special enumerated message is " + message;
}
enum MessageType {