Package io.camunda.connector.http.base
Record Class ExecutionEnvironment.SaaSCluster
java.lang.Object
java.lang.Record
io.camunda.connector.http.base.ExecutionEnvironment.SaaSCluster
- All Implemented Interfaces:
ExecutionEnvironment,ExecutionEnvironment.StoresDocument
- Enclosing interface:
ExecutionEnvironment
public static record ExecutionEnvironment.SaaSCluster(io.camunda.document.factory.DocumentFactory documentFactory)
extends Record
implements ExecutionEnvironment, ExecutionEnvironment.StoresDocument
The connector is executed in the context of the caller, i.e. in the C8 Cluster. When executed
here, the initial HttpCommonRequest will be serialized as JSON and passed to the Cloud
Function.
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.camunda.connector.http.base.ExecutionEnvironment
ExecutionEnvironment.SaaSCloudFunction, ExecutionEnvironment.SaaSCluster, ExecutionEnvironment.SelfManaged, ExecutionEnvironment.StoresDocument -
Constructor Summary
ConstructorsConstructorDescriptionSaaSCluster(io.camunda.document.factory.DocumentFactory documentFactory) Creates an instance of aSaaSClusterrecord class. -
Method Summary
Modifier and TypeMethodDescriptionio.camunda.document.factory.DocumentFactoryReturns the value of thedocumentFactoryrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SaaSCluster
public SaaSCluster(io.camunda.document.factory.DocumentFactory documentFactory) Creates an instance of aSaaSClusterrecord class.- Parameters:
documentFactory- the value for thedocumentFactoryrecord 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). -
documentFactory
public io.camunda.document.factory.DocumentFactory documentFactory()Returns the value of thedocumentFactoryrecord component.- Specified by:
documentFactoryin interfaceExecutionEnvironment.StoresDocument- Returns:
- the value of the
documentFactoryrecord component
-