logger.debug("no previous backfill");
}
return null;
}
Backfill bf = new Backfill(null, null, null, null);
bf.setBackfillEnabled(rs.getBoolean(1));
bf.setMaxInstances(rs.getInt(2));
bf.setDiskImage(rs.getString(3));
bf.setSiteCapacity(rs.getInt(4));
bf.setRepoUser(rs.getString(5));
return bf;
} catch(SQLException e) {
logger.error("",e);
throw new WorkspaceDatabaseException(e);