Class: ActiveLdap::Ldif::ChangeRecord::Control
- Inherits:
-
Object
- Object
- ActiveLdap::Ldif::ChangeRecord::Control
- Defined in:
- lib/active_ldap/ldif.rb
Instance Attribute Summary collapse
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
- #==(other) ⇒ Object
- #criticality? ⇒ Boolean
-
#initialize(type, criticality, value) ⇒ Control
constructor
A new instance of Control.
- #to_a ⇒ Object
- #to_hash ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(type, criticality, value) ⇒ Control
Returns a new instance of Control.
724 725 726 727 728 |
# File 'lib/active_ldap/ldif.rb', line 724 def initialize(type, criticality, value) @type = type @criticality = normalize_criticality(criticality) @value = value end |
Instance Attribute Details
#type ⇒ Object (readonly)
Returns the value of attribute type.
723 724 725 |
# File 'lib/active_ldap/ldif.rb', line 723 def type @type end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
723 724 725 |
# File 'lib/active_ldap/ldif.rb', line 723 def value @value end |
Instance Method Details
#==(other) ⇒ Object
754 755 756 757 758 759 |
# File 'lib/active_ldap/ldif.rb', line 754 def ==(other) other.is_a?(self.class) and @type == other.type and @criticality = other.criticality and @value == other.value end |
#criticality? ⇒ Boolean
730 731 732 |
# File 'lib/active_ldap/ldif.rb', line 730 def criticality? @criticality end |
#to_a ⇒ Object
734 735 736 |
# File 'lib/active_ldap/ldif.rb', line 734 def to_a [@type, @criticality, @value] end |
#to_hash ⇒ Object
738 739 740 741 742 743 744 |
# File 'lib/active_ldap/ldif.rb', line 738 def to_hash { :type => @type, :criticality => @criticality, :value => @value, } end |
#to_s ⇒ Object
746 747 748 749 750 751 752 |
# File 'lib/active_ldap/ldif.rb', line 746 def to_s result = "control: #{@type}" result << " #{@criticality}" unless @criticality.nil? result << @value if @value result << "\n" result end |