Package org.springframework.batch.admin.service

Examples of org.springframework.batch.admin.service.LocalFileService$FileServiceResource


  private FileController controller = new FileController();
  private LocalFileService fileService;

  @Before
  public void setUp() throws Exception {
    fileService = new LocalFileService();
    fileService.setFileSender(new FileSender() {
      public void send(File file) {
      }
    });
    controller.setFileService(fileService);
View Full Code Here

TOP

Related Classes of org.springframework.batch.admin.service.LocalFileService$FileServiceResource

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.