private HashMap<String, ? extends IManifest> getPcrManifestMap(TblMle mle) {
HashMap<String, IManifest> pcrManifests = new HashMap<String, IManifest>();
for (TblPcrManifest pcrMf : mle.getTblPcrManifestCollection()) {
// Call query method to avoid the objects from the cache
pcrMf = new TblPcrManifestJpaController(getEntityManagerFactory())
.findPcrManifestById(pcrMf.getId());
pcrManifests.put(pcrMf.getName().trim(), new
PcrManifest(Integer.valueOf(pcrMf.getName()),
pcrMf.getValue().trim()));