Record Class ADHybridPropertiesResource
java.lang.Object
java.lang.Record
com.inductiveautomation.ignition.gateway.authentication.resources.ADHybridPropertiesResource
public record ADHybridPropertiesResource(ADHybridPropertiesResource.LdapSettings ldap, Boolean listUsersFromAD, Boolean populateUsersOnDemand)
extends Record
Configuration for the Active Directory/Internal Hybrid user source.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic final recordLDAP settings for the AD/Internal Hybrid user source. -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionADHybridPropertiesResource(ADHybridPropertiesResource.LdapSettings ldap, Boolean listUsersFromAD, Boolean populateUsersOnDemand) Creates an instance of aADHybridPropertiesResourcerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.ldap()Returns the value of theldaprecord component.Returns the value of thelistUsersFromADrecord component.Returns the value of thepopulateUsersOnDemandrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
EXTENSION_POINT_TYPE
- See Also:
-
-
Constructor Details
-
ADHybridPropertiesResource
public ADHybridPropertiesResource(ADHybridPropertiesResource.LdapSettings ldap, Boolean listUsersFromAD, Boolean populateUsersOnDemand) Creates an instance of aADHybridPropertiesResourcerecord class.- Parameters:
ldap- the value for theldaprecord componentlistUsersFromAD- the value for thelistUsersFromADrecord componentpopulateUsersOnDemand- the value for thepopulateUsersOnDemandrecord 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). -
ldap
Returns the value of theldaprecord component.- Returns:
- the value of the
ldaprecord component
-
listUsersFromAD
Returns the value of thelistUsersFromADrecord component.- Returns:
- the value of the
listUsersFromADrecord component
-
populateUsersOnDemand
Returns the value of thepopulateUsersOnDemandrecord component.- Returns:
- the value of the
populateUsersOnDemandrecord component
-