You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by ra...@apache.org on 2002/03/31 18:46:13 UTC

cvs commit: jakarta-avalon-apps/ftpserver/src/java/org/apache/avalon/ftpserver/remote/interfaces SpyConnectionInterface.java

rana_b      02/03/31 08:46:13

  Modified:    ftpserver/src/java/org/apache/avalon/ftpserver/remote/interfaces
                        SpyConnectionInterface.java
  Log:
  server request/response separation
  
  Revision  Changes    Path
  1.2       +7 -2      jakarta-avalon-apps/ftpserver/src/java/org/apache/avalon/ftpserver/remote/interfaces/SpyConnectionInterface.java
  
  Index: SpyConnectionInterface.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-apps/ftpserver/src/java/org/apache/avalon/ftpserver/remote/interfaces/SpyConnectionInterface.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SpyConnectionInterface.java	6 Mar 2002 14:02:14 -0000	1.1
  +++ SpyConnectionInterface.java	31 Mar 2002 16:46:13 -0000	1.2
  @@ -19,7 +19,12 @@
   interface SpyConnectionInterface extends Remote {
       
       /**
  -     * Write user spy message.
  +     * Write user request.
        */
  -    void write(final String msg) throws IOException;
  +    void request(final String msg) throws IOException;
  +
  +    /**
  +     * Write server response.
  +     */
  +    void response(final String msg) throws IOException; 
   }    
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>