Examples of SmbInboundFileSynchronizingMessageSource


Examples of org.springframework.integration.smb.inbound.SmbInboundFileSynchronizingMessageSource

    assertNotNull(queue.comparator());
    assertEquals("smbInbound", adapter.getComponentName());
    assertEquals("smb:inbound-channel-adapter", adapter.getComponentType());
    assertNotNull(TestUtils.getPropertyValue(adapter, "poller"));
    assertEquals(applicationContext.getBean("smbChannel"), TestUtils.getPropertyValue(adapter, "outputChannel"));
    SmbInboundFileSynchronizingMessageSource inbound =
      (SmbInboundFileSynchronizingMessageSource) TestUtils.getPropertyValue(adapter, "source");

    SmbInboundFileSynchronizer fisync =
      (SmbInboundFileSynchronizer) TestUtils.getPropertyValue(inbound, "synchronizer");
    assertEquals(".working.tmp", TestUtils.getPropertyValue(fisync, "temporaryFileSuffix", String.class));
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.