wagon-providers/wagon-ssh-common-test/src/main/java/org/apache/maven/wagon/providers/ssh/ScpCommand.java [138:159]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void setInputStream( InputStream in )
    {
        this.in = in;
    }

    public void setOutputStream( OutputStream out )
    {
        this.out = out;
    }

    public void setErrorStream( OutputStream err )
    {
        this.err = err;
    }

    public void setExitCallback( ExitCallback callback )
    {
        this.callback = callback;
    }

    public void start( Environment env )
        throws IOException
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



wagon-providers/wagon-ssh-common-test/src/main/java/org/apache/maven/wagon/providers/ssh/ShellCommand.java [62:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public void setInputStream( InputStream in )
        {
            this.in = in;
        }

        public void setOutputStream( OutputStream out )
        {
            this.out = out;
        }

        public void setErrorStream( OutputStream err )
        {
            this.err = err;
        }

        public void setExitCallback( ExitCallback callback )
        {
            this.callback = callback;
        }

        public void start( Environment env )
            throws IOException
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



