Skip to content

Instantly share code, notes, and snippets.

@vijayakumar-psg587
Created January 17, 2019 16:28
Show Gist options
  • Save vijayakumar-psg587/70c19b88f059aff60d8d0e1e3dba98cd to your computer and use it in GitHub Desktop.
Save vijayakumar-psg587/70c19b88f059aff60d8d0e1e3dba98cd to your computer and use it in GitHub Desktop.
CustomFileListSupplier
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