Package org.apache.sshd.sftp

Examples of org.apache.sshd.sftp.Reply


    /**
     * {@inheritDoc}
     */
  public Reply beforeCommand(final SftpSession session, final Request sftpRequest) {
    Reply reply = null;
    for (Sftplet sftpLet : sftpLetList) {
      reply = sftpLet.beforeCommand(session, sftpRequest);
    }
    return reply;
  }
View Full Code Here


    /**
     * {@inheritDoc}
     */
  public Reply afterCommand(final SftpSession session, final Request sftpRequest, final Reply sftpReply)
      throws IOException {
    Reply reply = sftpReply;
    for (Sftplet sftpLet : sftpLetList) {
      reply = sftpLet.afterCommand(session, sftpRequest, reply);
    }
    return reply;
  }
View Full Code Here

TOP

Related Classes of org.apache.sshd.sftp.Reply

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.