Package net.schmizz.sshj.xfer

Examples of net.schmizz.sshj.xfer.LocalFileFilter


    scpUploadClient = new SCPUploadClient(engine);
  }

  @Test
  public void shouldOnlySendFilterAcceptedFilesFromDirectory() throws IOException {
    scpUploadClient.setUploadFilter(new LocalFileFilter() {
      @Override
      public boolean accept(LocalSourceFile file) {
        return !file.getName().contains("not-");
      }
    });
View Full Code Here

TOP

Related Classes of net.schmizz.sshj.xfer.LocalFileFilter

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.