Record Class ActiveExecutableResponse
java.lang.Object
java.lang.Record
io.camunda.connector.runtime.inbound.executable.ActiveExecutableResponse
public record ActiveExecutableResponse(UUID executableId, Class<? extends io.camunda.connector.api.inbound.InboundConnectorExecutable> executableClass, List<InboundConnectorElement> elements, io.camunda.connector.api.inbound.Health health, Collection<io.camunda.connector.api.inbound.Activity> logs)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionActiveExecutableResponse(UUID executableId, Class<? extends io.camunda.connector.api.inbound.InboundConnectorExecutable> executableClass, List<InboundConnectorElement> elements, io.camunda.connector.api.inbound.Health health, Collection<io.camunda.connector.api.inbound.Activity> logs) Creates an instance of aActiveExecutableResponserecord class. -
Method Summary
Modifier and TypeMethodDescriptionelements()Returns the value of theelementsrecord component.final booleanIndicates whether some other object is "equal to" this one.Class<? extends io.camunda.connector.api.inbound.InboundConnectorExecutable> Returns the value of theexecutableClassrecord component.Returns the value of theexecutableIdrecord component.final inthashCode()Returns a hash code value for this object.io.camunda.connector.api.inbound.Healthhealth()Returns the value of thehealthrecord component.Collection<io.camunda.connector.api.inbound.Activity> logs()Returns the value of thelogsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ActiveExecutableResponse
public ActiveExecutableResponse(UUID executableId, Class<? extends io.camunda.connector.api.inbound.InboundConnectorExecutable> executableClass, List<InboundConnectorElement> elements, io.camunda.connector.api.inbound.Health health, Collection<io.camunda.connector.api.inbound.Activity> logs) Creates an instance of aActiveExecutableResponserecord class.- Parameters:
executableId- the value for theexecutableIdrecord componentexecutableClass- the value for theexecutableClassrecord componentelements- the value for theelementsrecord componenthealth- the value for thehealthrecord componentlogs- the value for thelogsrecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
executableId
Returns the value of theexecutableIdrecord component.- Returns:
- the value of the
executableIdrecord component
-
executableClass
public Class<? extends io.camunda.connector.api.inbound.InboundConnectorExecutable> executableClass()Returns the value of theexecutableClassrecord component.- Returns:
- the value of the
executableClassrecord component
-
elements
Returns the value of theelementsrecord component.- Returns:
- the value of the
elementsrecord component
-
health
public io.camunda.connector.api.inbound.Health health()Returns the value of thehealthrecord component.- Returns:
- the value of the
healthrecord component
-
logs
Returns the value of thelogsrecord component.- Returns:
- the value of the
logsrecord component
-