Package org.springframework.batch.admin.service

Examples of org.springframework.batch.admin.service.FileSender


  private LocalFileService fileService;

  @Before
  public void setUp() throws Exception {
    fileService = new LocalFileService();
    fileService.setFileSender(new FileSender() {
      public void send(File file) {
      }
    });
    controller.setFileService(fileService);
    FileUtils.deleteDirectory(new File(System.getProperty("java.io.tmpdir", "/tmp"), "batch/files"));
View Full Code Here

TOP

Related Classes of org.springframework.batch.admin.service.FileSender

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.