cleaning up comments

This commit is contained in:
iadgovuser58 2024-06-04 08:41:52 -04:00
parent f995f0fc1c
commit 5fec15135e
5 changed files with 18 additions and 8 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;