Package org.apache.geronimo.gshell.remote.message

Examples of org.apache.geronimo.gshell.remote.message.EchoMessage


        //
        // TODO: Send a meaningful response
        //

        EchoMessage reply = new EchoMessage("CLOSE SHELL SUCCESS");
        reply.setCorrelationId(message.getId());
        session.send(reply);
    }
View Full Code Here


        //
        // TODO: Send a meaningful response
        //

        EchoMessage reply = new EchoMessage("OPEN SHELL SUCCESS");
        reply.setCorrelationId(message.getId());
        session.send(reply);
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.gshell.remote.message.EchoMessage

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.