mirror of
https://github.com/nsacyber/HIRS.git
synced 2025-02-20 17:52:47 +00:00
The wrong hash was use for the look up
This commit is contained in:
parent
e5470eded5
commit
8f2290300e
@ -92,7 +92,6 @@ public abstract class PageController<P extends PageParams> {
|
||||
* @return A generic ModelAndView containing basic information for the page.
|
||||
*/
|
||||
protected final ModelAndView getBaseModelAndView(final Page newPage) {
|
||||
|
||||
ModelMap modelMap = new ExtendedModelMap();
|
||||
|
||||
// add page information
|
||||
@ -110,7 +109,6 @@ public abstract class PageController<P extends PageParams> {
|
||||
}
|
||||
|
||||
return new ModelAndView(newPage.getViewName(), modelMap);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
@ -170,7 +168,5 @@ public abstract class PageController<P extends PageParams> {
|
||||
}
|
||||
|
||||
return redirect;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -385,7 +385,7 @@ public class ReferenceManifestDetailsPageController
|
||||
// starts off checking if associated rim is null; that is irrelevant for
|
||||
// this statement.
|
||||
measurements = EventLogMeasurements.select(referenceManifestManager)
|
||||
.byHexDecHash(support.getEventLogHash()).getRIM();
|
||||
.byHexDecHash(support.getHexDecHash()).getRIM();
|
||||
|
||||
if (support.isSwidPatch()) {
|
||||
data.put("swidPatch", "True");
|
||||
|
@ -160,7 +160,6 @@ public class ReferenceManifestPageController
|
||||
@Override
|
||||
public void modify(final Criteria criteria) {
|
||||
criteria.add(Restrictions.isNull(Certificate.ARCHIVE_FIELD));
|
||||
|
||||
}
|
||||
};
|
||||
FilteredRecordsList<ReferenceManifest> records
|
||||
|
Loading…
x
Reference in New Issue
Block a user