Record Class DifferentialExpressionAnalysisPayload
java.lang.Object
java.lang.Record
ubic.gemma.core.security.audit.payload.DifferentialExpressionAnalysisPayload
- All Implemented Interfaces:
AuditEventPayload
public record DifferentialExpressionAnalysisPayload(String analysisDescription)
extends Record
implements AuditEventPayload
Structured payload for the
DifferentialExpressionAnalysisEvent
written at the end of
DifferentialExpressionAnalyzerServiceImpl#persistAnalysis. Captures
the analysis.getDescription() value that the legacy 4-arg
addUpdateEvent call put in the free-form DETAIL column.
Phase C bucket 2f — see AUDIT_PHASE_C_RECCE.md §4d.
-
Nested Class Summary
Nested classes/interfaces inherited from interface AuditEventPayload
AuditEventPayload.None -
Constructor Summary
ConstructorsConstructorDescriptionDifferentialExpressionAnalysisPayload(String analysisDescription) Creates an instance of aDifferentialExpressionAnalysisPayloadrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theanalysisDescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DifferentialExpressionAnalysisPayload
Creates an instance of aDifferentialExpressionAnalysisPayloadrecord class.- Parameters:
analysisDescription- the value for theanalysisDescriptionrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
analysisDescription
Returns the value of theanalysisDescriptionrecord component.- Returns:
- the value of the
analysisDescriptionrecord component
-