package com.buglabs.bug.base.pub; /** * A callback interface for handling output resulting from command execution * in a shell session. * * @deprecated This has moved to com.buglabs.util.shell. * @author kgilmer */ public interface ICommandResponseHandler { /** * Client implements this method to handle output from shell session. * @param line Line of output * @param isError true if data was read from stderr, false if read from stdout. */ public void response(String line, boolean isError); }