Record Class ActiveInboundConnectorResponse
java.lang.Object
java.lang.Record
io.camunda.connector.runtime.inbound.controller.ActiveInboundConnectorResponse
-
Constructor Summary
ConstructorsConstructorDescriptionActiveInboundConnectorResponse(UUID executableId, String type, String tenantId, List<io.camunda.connector.api.inbound.ProcessElement> elements, Map<String, Object> data, io.camunda.connector.api.inbound.Health health) Creates an instance of aActiveInboundConnectorResponserecord class. -
Method Summary
Modifier and TypeMethodDescriptiondata()Returns the value of thedatarecord component.List<io.camunda.connector.api.inbound.ProcessElement> elements()Returns the value of theelementsrecord component.final booleanIndicates whether some other object is "equal to" this one.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.tenantId()Returns the value of thetenantIdrecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
Constructor Details
-
ActiveInboundConnectorResponse
public ActiveInboundConnectorResponse(UUID executableId, String type, String tenantId, List<io.camunda.connector.api.inbound.ProcessElement> elements, Map<String, Object> data, io.camunda.connector.api.inbound.Health health) Creates an instance of aActiveInboundConnectorResponserecord class.- Parameters:
executableId- the value for theexecutableIdrecord componenttype- the value for thetyperecord componenttenantId- the value for thetenantIdrecord componentelements- the value for theelementsrecord componentdata- the value for thedatarecord componenthealth- the value for thehealthrecord 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
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
tenantId
Returns the value of thetenantIdrecord component.- Returns:
- the value of the
tenantIdrecord component
-
elements
Returns the value of theelementsrecord component.- Returns:
- the value of the
elementsrecord component
-
data
Returns the value of thedatarecord component.- Returns:
- the value of the
datarecord component
-
health
public io.camunda.connector.api.inbound.Health health()Returns the value of thehealthrecord component.- Returns:
- the value of the
healthrecord component
-