Package io.kestra.core.models.tasks
Record Class ExecutableTask.SubflowId
java.lang.Object
java.lang.Record
io.kestra.core.models.tasks.ExecutableTask.SubflowId
- Enclosing interface:
- ExecutableTask<T extends Output>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.flowId()Returns the value of theflowIdrecord component.flowUid()final inthashCode()Returns a hash code value for this object.Returns the value of thenamespacerecord component.revision()Returns the value of therevisionrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SubflowId
Creates an instance of aSubflowIdrecord class.- Parameters:
namespace- the value for thenamespacerecord componentflowId- the value for theflowIdrecord componentrevision- the value for therevisionrecord component
-
-
Method Details
-
flowUid
-
flowUidWithoutRevision
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
namespace
Returns the value of thenamespacerecord component.- Returns:
- the value of the
namespacerecord component
-
flowId
Returns the value of theflowIdrecord component.- Returns:
- the value of the
flowIdrecord component
-
revision
Returns the value of therevisionrecord component.- Returns:
- the value of the
revisionrecord component
-