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 class
static final record
LDAP 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 aADHybridPropertiesResource
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.ldap()
Returns the value of theldap
record component.Returns the value of thelistUsersFromAD
record component.Returns the value of thepopulateUsersOnDemand
record component.final String
toString()
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 aADHybridPropertiesResource
record class.- Parameters:
ldap
- the value for theldap
record componentlistUsersFromAD
- the value for thelistUsersFromAD
record componentpopulateUsersOnDemand
- the value for thepopulateUsersOnDemand
record 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 theldap
record component.- Returns:
- the value of the
ldap
record component
-
listUsersFromAD
Returns the value of thelistUsersFromAD
record component.- Returns:
- the value of the
listUsersFromAD
record component
-
populateUsersOnDemand
Returns the value of thepopulateUsersOnDemand
record component.- Returns:
- the value of the
populateUsersOnDemand
record component
-