Package org.rhq.enterprise.communications.command.impl.echo

Examples of org.rhq.enterprise.communications.command.impl.echo.EchoCommand


public class EchoCommandService extends CommandService {
    /**
     * @see CommandExecutor#execute(Command, java.io.InputStream, java.io.OutputStream)
     */
    public CommandResponse execute(Command command, InputStream in, OutputStream out) {
        EchoCommand echoCommand = new EchoCommand(command);

        String msg = echoCommand.getMessage();
        String prefix = echoCommand.getPrefix();

        if (msg == null) {
            msg = "<null echo message>";
        }

View Full Code Here

TOP

Related Classes of org.rhq.enterprise.communications.command.impl.echo.EchoCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.