Package org.eclipse.jetty.http
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, boolean allowed)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionEvent(String details, ComplianceViolation.Mode mode, ComplianceViolation violation) Event(ComplianceViolation.Mode mode, ComplianceViolation violation, String details, boolean allowed) Creates an instance of aEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanallowed()Returns the value of theallowedrecord component.details()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
-
Event
public Event(ComplianceViolation.Mode mode, ComplianceViolation violation, String details, boolean allowed) Creates an instance of aEventrecord class.- Parameters:
mode- the value for themoderecord componentviolation- the value for theviolationrecord componentdetails- the value for thedetailsrecord componentallowed- the value for theallowedrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
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
-
allowed
public boolean allowed()Returns the value of theallowedrecord component.- Returns:
- the value of the
allowedrecord component
-