Package org.rhq.enterprise.communications.command.client

Examples of org.rhq.enterprise.communications.command.client.CommandAndCallback


    /**
     * Tests serializing commands and callbacks.
     */
    public void testSerializeCommandAndCallback() {
        GenericCommand gc = new GenericCommand();
        CommandAndCallback cnc = new CommandAndCallback(gc, new DummyCommandResponseCallback());

        cnc = (CommandAndCallback) serializeDeserialize(cnc);
        assert cnc.getCommand() != null;
        assert cnc.getCallback() != null;
        assert ((DummyCommandResponseCallback) cnc.getCallback()).foo.equals("bar");

        return;
    }
View Full Code Here

TOP

Related Classes of org.rhq.enterprise.communications.command.client.CommandAndCallback

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.