Record Class Transform.Response
java.lang.Object
java.lang.Record
org.alfresco.hxi_connector.live_ingester.adapters.config.properties.Transform.Response
- Enclosing class:
- Transform
public static record Transform.Response(@NotBlank String endpoint, @NotBlank String queueName, @NestedConfigurationProperty @NotNull org.alfresco.hxi_connector.common.config.properties.Retry retryIngestion, @NestedConfigurationProperty @NotNull org.alfresco.hxi_connector.common.config.properties.Retry retryTransformation)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionResponse(@NotBlank String endpoint, @NotBlank String queueName, @NotNull org.alfresco.hxi_connector.common.config.properties.Retry retryIngestion, @NotNull org.alfresco.hxi_connector.common.config.properties.Retry retryTransformation) Creates an instance of aResponserecord class. -
Method Summary
Modifier and TypeMethodDescription@NotBlank Stringendpoint()Returns the value of theendpointrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NotBlank StringReturns the value of thequeueNamerecord component.@NotNull org.alfresco.hxi_connector.common.config.properties.RetryReturns the value of theretryIngestionrecord component.@NotNull org.alfresco.hxi_connector.common.config.properties.RetryReturns the value of theretryTransformationrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Response
public Response(@NotBlank @NotBlank String endpoint, @NotBlank @NotBlank String queueName, @NotNull @NotNull org.alfresco.hxi_connector.common.config.properties.Retry retryIngestion, @NotNull @NotNull org.alfresco.hxi_connector.common.config.properties.Retry retryTransformation) Creates an instance of aResponserecord class.- Parameters:
endpoint- the value for theendpointrecord componentqueueName- the value for thequeueNamerecord componentretryIngestion- the value for theretryIngestionrecord componentretryTransformation- the value for theretryTransformationrecord 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). -
endpoint
Returns the value of theendpointrecord component.- Returns:
- the value of the
endpointrecord component
-
queueName
Returns the value of thequeueNamerecord component.- Returns:
- the value of the
queueNamerecord component
-
retryIngestion
@NotNull @NestedConfigurationProperty public @NotNull org.alfresco.hxi_connector.common.config.properties.Retry retryIngestion()Returns the value of theretryIngestionrecord component.- Returns:
- the value of the
retryIngestionrecord component
-
retryTransformation
@NotNull @NestedConfigurationProperty public @NotNull org.alfresco.hxi_connector.common.config.properties.Retry retryTransformation()Returns the value of theretryTransformationrecord component.- Returns:
- the value of the
retryTransformationrecord component
-