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 844 844: def initialize(type, attribute, options, attributes) 845: @type = type 846: @attribute = attribute 847: @options = options 848: @attributes = attributes 849: end
# File lib/active_ldap/ldif.rb, line 872 872: def ==(other) 873: other.is_a?(self.class) and 874: @type == other.type and 875: full_attribute_name == other.full_attribute_name and 876: Attributes.normalize(@attributes) == 877: Attributes.normalize(other.attributes) 878: end
# File lib/active_ldap/ldif.rb, line 851 851: def full_attribute_name 852: [@attribute, *@options].join(";") 853: end