mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-18 20:47:58 +00:00
removing default constructors due to checkstyles not liking it
This commit is contained in:
parent
6a706d1871
commit
ccad9f94d1
@ -1,13 +1,13 @@
|
|||||||
package hirs.utils.tpm.eventlog.events;
|
package hirs.utils.tpm.eventlog.events;
|
||||||
|
|
||||||
import lombok.AccessLevel;
|
//import lombok.AccessLevel;
|
||||||
import lombok.NoArgsConstructor;
|
//import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class for defining constants referenced in the PC Client
|
* Class for defining constants referenced in the PC Client
|
||||||
* Platform Firmware Profile specification.
|
* Platform Firmware Profile specification.
|
||||||
*/
|
*/
|
||||||
@NoArgsConstructor(access = AccessLevel.PRIVATE)
|
//@NoArgsConstructor(access = AccessLevel.PRIVATE)
|
||||||
public final class EvConstants {
|
public final class EvConstants {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -34,7 +34,7 @@ public class NvIndexDynamicEventLogData {
|
|||||||
/**
|
/**
|
||||||
* Human-readable description of the data within this DEVICE_SECURITY_EVENT_DATA/..DATA2 event.
|
* Human-readable description of the data within this DEVICE_SECURITY_EVENT_DATA/..DATA2 event.
|
||||||
*/
|
*/
|
||||||
String nvIndexDynamicInfo = "";
|
private String nvIndexDynamicInfo = "";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* NvIndexInstanceEventLogData constructor.
|
* NvIndexInstanceEventLogData constructor.
|
||||||
|
@ -1,13 +1,9 @@
|
|||||||
package hirs.utils.tpm.eventlog.spdm;
|
package hirs.utils.tpm.eventlog.spdm;
|
||||||
|
|
||||||
import lombok.AccessLevel;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class for defining hash algorithms referenced in the DMTF SPDM specification.
|
* Class for defining hash algorithms referenced in the DMTF SPDM specification.
|
||||||
* SPDM 1.3.0, Table 21, MeasurementHashAlgo.
|
* SPDM 1.3.0, Table 21, MeasurementHashAlgo.
|
||||||
*/
|
*/
|
||||||
@NoArgsConstructor(access = AccessLevel.PRIVATE)
|
|
||||||
public class SpdmHa {
|
public class SpdmHa {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
package hirs.utils.tpm.eventlog.uefi;
|
package hirs.utils.tpm.eventlog.uefi;
|
||||||
|
|
||||||
import lombok.AccessLevel;
|
//import lombok.AccessLevel;
|
||||||
import lombok.NoArgsConstructor;
|
//import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class contains the String constants that are referenced by UEFI.
|
* This class contains the String constants that are referenced by UEFI.
|
||||||
* It is expected that member properties of this class will expand as
|
* It is expected that member properties of this class will expand as
|
||||||
* more functionality is added.
|
* more functionality is added.
|
||||||
*/
|
*/
|
||||||
@NoArgsConstructor(access = AccessLevel.PRIVATE)
|
//@NoArgsConstructor(access = AccessLevel.PRIVATE)
|
||||||
public final class UefiConstants {
|
public final class UefiConstants {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user