mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-18 20:47:58 +00:00
cleaning up comments
This commit is contained in:
parent
f995f0fc1c
commit
5fec15135e
@ -86,7 +86,7 @@ public final class TCGEventLog {
|
||||
* Default is normal status (normal status is from-filesystem).
|
||||
* Status will only change IF there is a UefiVariable event in this log,
|
||||
* and if that event causes a different status.
|
||||
* */
|
||||
*/
|
||||
@Getter
|
||||
private String vendorTableFileStatus = FILESTATUS_FROM_FILESYSTEM;
|
||||
|
||||
|
@ -125,7 +125,7 @@ public class TpmPcrEvent {
|
||||
* Default is normal status (normal status is from-filesystem).
|
||||
* Status will only change IF this is an event that has a UefiVariable,
|
||||
* and if that event causes a different status.
|
||||
* */
|
||||
*/
|
||||
@Getter
|
||||
private String vendorTableFileStatus = FILESTATUS_FROM_FILESYSTEM;
|
||||
|
||||
|
@ -27,14 +27,22 @@ public class UefiGuid {
|
||||
* used for conversion to uuid time.
|
||||
*/
|
||||
private static final int UUID_EPOCH_DIVISOR = 10000;
|
||||
|
||||
/**
|
||||
* Filesystem path of vendor-table.json
|
||||
*/
|
||||
private static final Path JSON_PATH = FileSystems.getDefault().getPath("/etc",
|
||||
"hirs", "aca", "default-properties", "vendor-table.json");
|
||||
|
||||
/**
|
||||
* Name of vendor-table file in code
|
||||
*/
|
||||
private static final String JSON_FILENAME = "vendor-table2.json";
|
||||
|
||||
/**
|
||||
* Reference to the vendor-table json object
|
||||
*/
|
||||
private JsonObject uefiVendorRef;
|
||||
/** Track status of vendor-table.json */
|
||||
/**
|
||||
* Track status of vendor-table.json
|
||||
*/
|
||||
@Getter
|
||||
private String vendorTableFileStatus = FILESTATUS_NOT_ACCESSIBLE;
|
||||
|
||||
|
@ -71,7 +71,9 @@ public class UefiSignatureList {
|
||||
* Type of signature.
|
||||
*/
|
||||
private UefiGuid signatureType = null;
|
||||
/** Track status of vendor-table.json */
|
||||
/**
|
||||
* Track status of vendor-table.json
|
||||
*/
|
||||
@Getter
|
||||
private String vendorTableFileStatus = FILESTATUS_NOT_ACCESSIBLE;
|
||||
|
||||
|
@ -71,7 +71,7 @@ public class UefiVariable {
|
||||
* The default here is that each list correctly grabbed the file from file system.
|
||||
* If any one list has issues, this overall status will change to reflect the
|
||||
* problematic list's status.
|
||||
* */
|
||||
*/
|
||||
@Getter
|
||||
private String vendorTableFileStatus = FILESTATUS_FROM_FILESYSTEM;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user