Record Class ADtoDBHybridAuthPropertiesResource
java.lang.Object
java.lang.Record
com.inductiveautomation.ignition.gateway.authentication.resources.ADtoDBHybridAuthPropertiesResource
public record ADtoDBHybridAuthPropertiesResource(ADtoDBHybridAuthPropertiesResource.DbSettings database, ADtoDBHybridAuthPropertiesResource.LdapSettings ldap, Boolean listUsersFromAD)
extends Record
This class is used to define the configuration properties for the AD to DB Hybrid user source.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classUserSourceExtensionPointimplementation for the AD to DB Hybrid user source.static final recordDatabase settings for the AD to DB Hybrid user source.static final recordLDAP settings for the AD to DB Hybrid user source. -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionADtoDBHybridAuthPropertiesResource(ADtoDBHybridAuthPropertiesResource.DbSettings database, ADtoDBHybridAuthPropertiesResource.LdapSettings ldap, Boolean listUsersFromAD) Creates an instance of aADtoDBHybridAuthPropertiesResourcerecord class. -
Method Summary
Modifier and TypeMethodDescriptiondatabase()Returns the value of thedatabaserecord component.final 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.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
EXTENSION_POINT_TYPE
- See Also:
-
-
Constructor Details
-
ADtoDBHybridAuthPropertiesResource
public ADtoDBHybridAuthPropertiesResource(ADtoDBHybridAuthPropertiesResource.DbSettings database, ADtoDBHybridAuthPropertiesResource.LdapSettings ldap, Boolean listUsersFromAD) Creates an instance of aADtoDBHybridAuthPropertiesResourcerecord class.- Parameters:
database- the value for thedatabaserecord componentldap- the value for theldaprecord componentlistUsersFromAD- the value for thelistUsersFromADrecord 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). -
database
Returns the value of thedatabaserecord component.- Returns:
- the value of the
databaserecord component
-
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
-