Examples of SmbSimplePatternFileListFilter


Examples of org.springframework.integration.smb.filters.SmbSimplePatternFileListFilter

      (SmbInboundFileSynchronizer) TestUtils.getPropertyValue(inbound, "synchronizer");
    assertEquals(".working.tmp", TestUtils.getPropertyValue(fisync, "temporaryFileSuffix", String.class));
    String remoteFileSeparator = (String) TestUtils.getPropertyValue(fisync, "remoteFileSeparator");
    assertNotNull(remoteFileSeparator);
    assertEquals("", remoteFileSeparator);
    SmbSimplePatternFileListFilter filter = (SmbSimplePatternFileListFilter) TestUtils.getPropertyValue(fisync, "filter");
    assertNotNull(filter);
    Object sessionFactory = TestUtils.getPropertyValue(fisync, "sessionFactory");
    assertTrue(SmbSessionFactory.class.isAssignableFrom(sessionFactory.getClass()));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.