package bridge; import java.io.File;import java.util.List; abstract public class FileCommand extends CommandImpl { protected File file; public FileCommand(String filename) { super(); file = new File(filename); } @Override public List GetGeneratedKeys() { return null; } }