Package org.springframework.integration.file.remote

Examples of org.springframework.integration.file.remote.RemoteFileTemplate


    stepExecutionContext.putString("filePath", "foo.txt");
    stepExecution.setExecutionContext(stepExecutionContext);
    StepContext stepContext = new StepContext(stepExecution);
    ChunkContext chunkContext = new ChunkContext(stepContext);

    RemoteFileTemplate template = new RemoteFileTemplate(factory);
    template.setBeanFactory(mock(BeanFactory.class));
    template.afterPropertiesSet();

    // clean up from old tests
    FileSystem fs = this.hadoopFileSystemTestSupport.getResource();
    Path p = new Path("/qux/foo.txt");
    fs.delete(p, true);
View Full Code Here

TOP

Related Classes of org.springframework.integration.file.remote.RemoteFileTemplate

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.