Record Class IntegrationProperties.Alfresco
java.lang.Object
java.lang.Record
org.alfresco.hxi_connector.live_ingester.adapters.config.IntegrationProperties.Alfresco
- Enclosing class:
- IntegrationProperties
@Validated
@ConfigurationProperties("alfresco")
public static record IntegrationProperties.Alfresco(@NestedConfigurationProperty @NotNull Repository repository, @NestedConfigurationProperty @NotNull BulkIngester bulkIngester, @NestedConfigurationProperty @NotNull Transform transform, @NestedConfigurationProperty @NotNull Filter filter)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionAlfresco(@NotNull Repository repository, @NotNull BulkIngester bulkIngester, @NotNull Transform transform, @NotNull Filter filter) Creates an instance of aAlfrescorecord class. -
Method Summary
Modifier and TypeMethodDescription@NotNull BulkIngesterReturns the value of thebulkIngesterrecord component.final booleanIndicates whether some other object is "equal to" this one.@NotNull Filterfilter()Returns the value of thefilterrecord component.final inthashCode()Returns a hash code value for this object.@NotNull RepositoryReturns the value of therepositoryrecord component.final StringtoString()Returns a string representation of this record class.@NotNull TransformReturns the value of thetransformrecord component.
-
Constructor Details
-
Alfresco
public Alfresco(@NotNull @NotNull Repository repository, @NotNull @NotNull BulkIngester bulkIngester, @NotNull @NotNull Transform transform, @NotNull @NotNull Filter filter) Creates an instance of aAlfrescorecord class.- Parameters:
repository- the value for therepositoryrecord componentbulkIngester- the value for thebulkIngesterrecord componenttransform- the value for thetransformrecord componentfilter- the value for thefilterrecord 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). -
repository
Returns the value of therepositoryrecord component.- Returns:
- the value of the
repositoryrecord component
-
bulkIngester
Returns the value of thebulkIngesterrecord component.- Returns:
- the value of the
bulkIngesterrecord component
-
transform
Returns the value of thetransformrecord component.- Returns:
- the value of the
transformrecord component
-
filter
Returns the value of thefilterrecord component.- Returns:
- the value of the
filterrecord component
-