Created
January 17, 2019 16:28
-
-
Save vijayakumar-psg587/70c19b88f059aff60d8d0e1e3dba98cd to your computer and use it in GitHub Desktop.
CustomFileListSupplier
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.function.Supplier; | |
//FileReadDTO is the POJO class | |
public class CustomFileListSupplier implements Supplier<List<FileReadDTO>> { | |
@Override | |
public List<FileReadDTO> get() { | |
// TODO Auto-generated method stub | |
return new ArrayList<FileReadDTO>(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment