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 class
UserSourceExtensionPoint
implementation for the AD to DB Hybrid user source.static final record
Database settings for the AD to DB Hybrid user source.static final record
LDAP 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 aADtoDBHybridAuthPropertiesResource
record class. -
Method Summary
Modifier and TypeMethodDescriptiondatabase()
Returns the value of thedatabase
record component.final 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.final String
toString()
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 aADtoDBHybridAuthPropertiesResource
record class.- Parameters:
database
- the value for thedatabase
record componentldap
- the value for theldap
record componentlistUsersFromAD
- the value for thelistUsersFromAD
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)
. -
database
Returns the value of thedatabase
record component.- Returns:
- the value of the
database
record component
-
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
-