/**
* {@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;
}