removing default constructors due to checkstyles not liking it

This commit is contained in:
iadgovuser58 2024-08-20 14:06:43 -04:00
parent 6a706d1871
commit ccad9f94d1
4 changed files with 7 additions and 11 deletions

View File

@ -1,13 +1,13 @@
package hirs.utils.tpm.eventlog.events;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
//import lombok.AccessLevel;
//import lombok.NoArgsConstructor;
/**
* Class for defining constants referenced in the PC Client
* Platform Firmware Profile specification.
*/
@NoArgsConstructor(access = AccessLevel.PRIVATE)
//@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class EvConstants {
/**

View File

@ -34,7 +34,7 @@ public class NvIndexDynamicEventLogData {
/**
* Human-readable description of the data within this DEVICE_SECURITY_EVENT_DATA/..DATA2 event.
*/
String nvIndexDynamicInfo = "";
private String nvIndexDynamicInfo = "";
/**
* NvIndexInstanceEventLogData constructor.

View File

@ -1,13 +1,9 @@
package hirs.utils.tpm.eventlog.spdm;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
/**
* Class for defining hash algorithms referenced in the DMTF SPDM specification.
* SPDM 1.3.0, Table 21, MeasurementHashAlgo.
*/
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class SpdmHa {
/**

View File

@ -1,14 +1,14 @@
package hirs.utils.tpm.eventlog.uefi;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
//import lombok.AccessLevel;
//import lombok.NoArgsConstructor;
/**
* This class contains the String constants that are referenced by UEFI.
* It is expected that member properties of this class will expand as
* more functionality is added.
*/
@NoArgsConstructor(access = AccessLevel.PRIVATE)
//@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class UefiConstants {
/**