@@ -27,9 +25,7 @@
Event Type |
PCR Index |
Digest Value |
- Details |
Base RIM |
- Support RIM |
@@ -41,35 +37,25 @@
var columns = [
{data: 'manufacturer',
orderable: true,
- searchable: false},
+ searchable:false},
{data: 'model',
orderable: false,
- searchable: false},
+ searchable:false},
{data: 'eventType',
orderable: false,
- searchable: false,},
+ searchable:false,},
{data: 'pcrIndex',
orderable: true,
- searchable: false},
+ searchable:false},
{data: 'digestValue',
orderable: false,
- searchable: false},
- {data: 'contentString',
- orderable: false,
- searchable: false},
+ searchable:false},
{data: 'baseRimId',
orderable: false,
searchable: false,
render: function(data, type, full, meta) {
return rimDetailsLink(full.baseRimId);
}
- },
- {data: 'supportRimId',
- orderable: false,
- searchable: false,
- render: function(data, type, full, meta) {
- return rimDetailsLink(full.supportRimId);
- }
}
];
diff --git a/HIRS_Utils/src/main/java/hirs/data/persist/ReferenceDigestValue.java b/HIRS_Utils/src/main/java/hirs/data/persist/ReferenceDigestValue.java
index 98a9b772..7b25b38a 100644
--- a/HIRS_Utils/src/main/java/hirs/data/persist/ReferenceDigestValue.java
+++ b/HIRS_Utils/src/main/java/hirs/data/persist/ReferenceDigestValue.java
@@ -8,7 +8,6 @@ import javax.persistence.AccessType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
-import javax.persistence.Transient;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
@@ -48,8 +47,6 @@ public class ReferenceDigestValue extends ArchivableEntity {
private boolean matchFail;
@Column(nullable = false)
private boolean patched = false;
- @Transient
- private String contentString; //used for displaying content blob on frontend
/**
* Default constructor necessary for Hibernate.
@@ -96,7 +93,6 @@ public class ReferenceDigestValue extends ArchivableEntity {
this.matchFail = matchFail;
this.patched = patched;
this.contentBlob = Arrays.clone(contentBlob);
- this.contentString = "";
}
/**
@@ -261,22 +257,6 @@ public class ReferenceDigestValue extends ArchivableEntity {
}
}
- /**
- * Getter for the String representation of the contentBlob property.
- * @return the content string
- */
- public String getContentString() {
- return contentString;
- }
-
- /**
- * Setter for the String representation of the contentBlob property.
- * @param contentString the string value
- */
- public void setContentString(final String contentString) {
- this.contentString = contentString;
- }
-
@Override
public boolean equals(final Object obj) {
if (this == obj) {