log.debug("Cache hit on map for PoolQC " + id);
return (PoolQC)element.getObjectValue();
}
}
PoolQC s = dataObjectFactory.getPoolQC();
s.setId(id);
s.setQcCreator(rs.getString("qcUserName"));
s.setQcDate(rs.getDate("qcDate"));
s.setResults(rs.getDouble("results"));
try {
s.setQcType(getPoolQcTypeById(rs.getLong("qcMethod")));
if (!isLazy()) {
s.setPool(poolDAO.get(rs.getLong("pool_poolId")));
}
}
catch (IOException e) {
e.printStackTrace();
}