Record Class CompactPathRule.CompactedEvent
java.lang.Object
java.lang.Record
org.eclipse.jetty.rewrite.handler.CompactPathRule.CompactedEvent
- Enclosing class:
 CompactPathRule
public static record CompactPathRule.CompactedEvent(Rule.Handler input, String changedPath, String message, CompactPathRule rule)
extends Record
- 
Constructor Summary
ConstructorsConstructorDescriptionCompactedEvent(Rule.Handler input, String changedPath, String message, CompactPathRule rule) Creates an instance of aCompactedEventrecord class. - 
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thechangedPathrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.input()Returns the value of theinputrecord component.message()Returns the value of themessagerecord component.rule()Returns the value of therulerecord component.final StringtoString()Returns a string representation of this record class. 
- 
Constructor Details
- 
CompactedEvent
Creates an instance of aCompactedEventrecord class.- Parameters:
 input- the value for theinputrecord componentchangedPath- the value for thechangedPathrecord componentmessage- the value for themessagerecord componentrule- the value for therulerecord 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). - 
input
Returns the value of theinputrecord component.- Returns:
 - the value of the 
inputrecord component 
 - 
changedPath
Returns the value of thechangedPathrecord component.- Returns:
 - the value of the 
changedPathrecord component 
 - 
message
Returns the value of themessagerecord component.- Returns:
 - the value of the 
messagerecord component 
 - 
rule
Returns the value of therulerecord component.- Returns:
 - the value of the 
rulerecord component 
 
 -