Record Class IntegrationProperties.HylandExperience
java.lang.Object
java.lang.Record
org.alfresco.hxi_connector.live_ingester.adapters.config.IntegrationProperties.HylandExperience
- Enclosing class:
- IntegrationProperties
@ConfigurationProperties("hyland-experience")
public static record IntegrationProperties.HylandExperience(@NotNull Authentication authentication, @NotNull Authorization authorization, @NotNull Storage storage, @NotNull Ingester ingester)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionHylandExperience(@NotNull Authentication authentication, @NotNull Authorization authorization, @NotNull Storage storage, @NotNull Ingester ingester) Creates an instance of aHylandExperiencerecord class. -
Method Summary
Modifier and TypeMethodDescription@NotNull AuthenticationReturns the value of theauthenticationrecord component.@NotNull AuthorizationReturns the value of theauthorizationrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NotNull Ingesteringester()Returns the value of theingesterrecord component.@NotNull Storagestorage()Returns the value of thestoragerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
HylandExperience
public HylandExperience(@NotNull @NotNull Authentication authentication, @NotNull @NotNull Authorization authorization, @NotNull @NotNull Storage storage, @NotNull @NotNull Ingester ingester) Creates an instance of aHylandExperiencerecord class.- Parameters:
authentication- the value for theauthenticationrecord componentauthorization- the value for theauthorizationrecord componentstorage- the value for thestoragerecord componentingester- the value for theingesterrecord 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). -
authentication
Returns the value of theauthenticationrecord component.- Returns:
- the value of the
authenticationrecord component
-
authorization
Returns the value of theauthorizationrecord component.- Returns:
- the value of the
authorizationrecord component
-
storage
Returns the value of thestoragerecord component.- Returns:
- the value of the
storagerecord component
-
ingester
Returns the value of theingesterrecord component.- Returns:
- the value of the
ingesterrecord component
-