import java.io.InputStream;


public interface MsgForwarder {
	boolean processMessage(String from, InputStream fwdMsg);
}
