Snippets

Vijay Kumar 7exkEe: Untitled snippet

Created by Vijay Kumar

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>();
	}

}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.