Record Class EventSubscriptionManager.StartEventInfo
java.lang.Object
java.lang.Record
org.flowable.engine.impl.bpmn.deployer.EventSubscriptionManager.StartEventInfo
- Enclosing class:
- EventSubscriptionManager
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedStartEventInfo(String eventType, String activityId, boolean dynamic) Creates an instance of aStartEventInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theactivityIdrecord component.booleandynamic()Returns the value of thedynamicrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theeventTyperecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
StartEventInfo
Creates an instance of aStartEventInforecord class.- Parameters:
eventType- the value for theeventTyperecord componentactivityId- the value for theactivityIdrecord componentdynamic- the value for thedynamicrecord 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 theeventTyperecord component.- Returns:
- the value of the
eventTyperecord component
-
activityId
Returns the value of theactivityIdrecord component.- Returns:
- the value of the
activityIdrecord component
-
dynamic
public boolean dynamic()Returns the value of thedynamicrecord component.- Returns:
- the value of the
dynamicrecord component
-