Class: ActiveLdap::Ldif::ChangeRecord::Control

Inherits:
Object
  • Object
show all
Defined in:
lib/active_ldap/ldif.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type, criticality, value) ⇒ Control

Returns a new instance of Control.



718
719
720
721
722
# File 'lib/active_ldap/ldif.rb', line 718

def initialize(type, criticality, value)
  @type = type
  @criticality = normalize_criticality(criticality)
  @value = value
end

Instance Attribute Details

#typeObject (readonly)

Returns the value of attribute type.



717
718
719
# File 'lib/active_ldap/ldif.rb', line 717

def type
  @type
end

#valueObject (readonly)

Returns the value of attribute value.



717
718
719
# File 'lib/active_ldap/ldif.rb', line 717

def value
  @value
end

Instance Method Details

#==(other) ⇒ Object



748
749
750
751
752
753
# File 'lib/active_ldap/ldif.rb', line 748

def ==(other)
  other.is_a?(self.class) and
    @type == other.type and
    @criticality = other.criticality and
    @value == other.value
end

#criticality?Boolean

Returns:

  • (Boolean)


724
725
726
# File 'lib/active_ldap/ldif.rb', line 724

def criticality?
  @criticality
end

#to_aObject



728
729
730
# File 'lib/active_ldap/ldif.rb', line 728

def to_a
  [@type, @criticality, @value]
end

#to_hashObject



732
733
734
735
736
737
738
# File 'lib/active_ldap/ldif.rb', line 732

def to_hash
  {
    :type => @type,
    :criticality => @criticality,
    :value => @value,
  }
end

#to_sObject



740
741
742
743
744
745
746
# File 'lib/active_ldap/ldif.rb', line 740

def to_s
  result = "control: #{@type}"
  result << " #{@criticality}" unless @criticality.nil?
  result << @value if @value
  result << "\n"
  result
end