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.
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
#type ⇒ Object (readonly)
Returns the value of attribute type.
717 718 719 |
# File 'lib/active_ldap/ldif.rb', line 717 def type @type end |
#value ⇒ Object (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
724 725 726 |
# File 'lib/active_ldap/ldif.rb', line 724 def criticality? @criticality end |
#to_a ⇒ Object
728 729 730 |
# File 'lib/active_ldap/ldif.rb', line 728 def to_a [@type, @criticality, @value] end |
#to_hash ⇒ Object
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_s ⇒ Object
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 |