| Class | ActiveLdap::Ldif::ModifyRecord::Operation |
| In: |
lib/active_ldap/ldif.rb
|
| Parent: | Object |
| attribute | [R] | |
| attributes | [R] | |
| options | [R] | |
| type | [R] |
# File lib/active_ldap/ldif.rb, line 872
872: def initialize(type, attribute, options, attributes)
873: @type = type
874: @attribute = attribute
875: @options = options
876: @attributes = attributes
877: end
# File lib/active_ldap/ldif.rb, line 900
900: def ==(other)
901: other.is_a?(self.class) and
902: @type == other.type and
903: full_attribute_name == other.full_attribute_name and
904: Attributes.normalize(@attributes) ==
905: Attributes.normalize(other.attributes)
906: end
# File lib/active_ldap/ldif.rb, line 879
879: def full_attribute_name
880: [@attribute, *@options].join(";")
881: end