Record Class CaptureStep
java.lang.Object
java.lang.Record
com.shaft.capture.model.CaptureStep
- Record Components:
clientActionId- stable browser-assigned action identifiersequence- event sequence within the sessiondescription- human-readable step description
Safe browser-facing summary of one persisted capture event, used to rehydrate the
recorder UI step list across navigations (including cross-origin ones) from the
server-side session store instead of page-scoped storage.
-
Constructor Summary
ConstructorsConstructorDescriptionCaptureStep(String clientActionId, long sequence, String description) Creates an immutable step summary. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theclientActionIdrecord component.Returns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.longsequence()Returns the value of thesequencerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CaptureStep
-
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
clientActionId
Returns the value of theclientActionIdrecord component.- Returns:
- the value of the
clientActionIdrecord component
-
sequence
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-