Record Class ExtraLdapAttribute
java.lang.Object
java.lang.Record
com.inductiveautomation.ignition.gateway.authentication.resources.ExtraLdapAttribute
public record ExtraLdapAttribute(String attribute, String property, Boolean binary, Boolean multiValued)
extends Record
Configuration for an extra attribute that should be retrieved from LDAP and stored on the user object under the
specified property.
-
Constructor Summary
ConstructorsConstructorDescriptionExtraLdapAttribute(String attribute, String property, Boolean binary, Boolean multiValued) Creates an instance of aExtraLdapAttributerecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theattributerecord component.binary()Returns the value of thebinaryrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of themultiValuedrecord component.property()Returns the value of thepropertyrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ExtraLdapAttribute
Creates an instance of aExtraLdapAttributerecord class.- Parameters:
attribute- the value for theattributerecord componentproperty- the value for thepropertyrecord componentbinary- the value for thebinaryrecord componentmultiValued- the value for themultiValuedrecord 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). -
attribute
Returns the value of theattributerecord component.- Returns:
- the value of the
attributerecord component
-
property
Returns the value of thepropertyrecord component.- Returns:
- the value of the
propertyrecord component
-
binary
Returns the value of thebinaryrecord component.- Returns:
- the value of the
binaryrecord component
-
multiValued
Returns the value of themultiValuedrecord component.- Returns:
- the value of the
multiValuedrecord component
-