Record Class ComplianceViolation.Event
java.lang.Object
java.lang.Record
org.eclipse.jetty.http.ComplianceViolation.Event
- Enclosing interface:
ComplianceViolation
public static record ComplianceViolation.Event(ComplianceViolation.Mode mode, ComplianceViolation violation, String details)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionEvent(ComplianceViolation.Mode mode, ComplianceViolation violation, String details) Creates an instance of aEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondetails()Returns the value of thedetailsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.mode()Returns the value of themoderecord component.toString()Returns a string representation of this record class.Returns the value of theviolationrecord component.
-
Constructor Details
-
Event
Creates an instance of aEventrecord class.- Parameters:
mode- the value for themoderecord componentviolation- the value for theviolationrecord componentdetails- the value for thedetailsrecord 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). -
mode
Returns the value of themoderecord component.- Returns:
- the value of the
moderecord component
-
violation
Returns the value of theviolationrecord component.- Returns:
- the value of the
violationrecord component
-
details
Returns the value of thedetailsrecord component.- Returns:
- the value of the
detailsrecord component
-