Record Class EventSubscriptionManager.StartEventInfo
java.lang.Object
java.lang.Record
org.flowable.engine.impl.bpmn.deployer.EventSubscriptionManager.StartEventInfo
- Enclosing class:
- EventSubscriptionManager
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
StartEventInfo
(String eventType, String activityId, boolean dynamic) Creates an instance of aStartEventInfo
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theactivityId
record component.boolean
dynamic()
Returns the value of thedynamic
record component.final boolean
Indicates whether some other object is "equal to" this one.Returns the value of theeventType
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
StartEventInfo
Creates an instance of aStartEventInfo
record class.- Parameters:
eventType
- the value for theeventType
record componentactivityId
- the value for theactivityId
record componentdynamic
- the value for thedynamic
record 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 '=='. -
eventType
Returns the value of theeventType
record component.- Returns:
- the value of the
eventType
record component
-
activityId
Returns the value of theactivityId
record component.- Returns:
- the value of the
activityId
record component
-
dynamic
public boolean dynamic()Returns the value of thedynamic
record component.- Returns:
- the value of the
dynamic
record component
-