Class: AbideDevUtils::XCCDF::Parser::Objects::Metadata
- Inherits:
-
ElementBase
- Object
- ElementBase
- AbideDevUtils::XCCDF::Parser::Objects::Metadata
- Defined in:
- lib/abide_dev_utils/xccdf/parser/objects.rb
Overview
Class for XCCDF rule metadata element
Constant Summary
Constants inherited from ElementBase
Instance Attribute Summary
Attributes inherited from ElementBase
#child_labels, #children, #link_labels, #links, #parent
Class Method Summary collapse
Instance Method Summary collapse
- #eql?(other) ⇒ Boolean
- #hash ⇒ Object
-
#initialize(element, parent: nil, parent_node: nil) ⇒ Metadata
constructor
A new instance of Metadata.
Methods inherited from ElementBase
#<=>, #add_link, #add_links, #all_values, #ancestors, #depth, #descendants, #find_similarity, #inspect, #label, #leaf?, #print_tree, #root, #root?, #siblings, #xccdf_type, xmlns
Methods included from Helpers::XPath
Methods included from DiffableObject
#check_diffable!, #correlate_added_removed, #diff, #diff_ambiguous, #diff_array_obj, #diff_benchmark, #diff_change_result, #diff_check, #diff_complex_check, #diff_group, #diff_plain_obj, #diff_profile, #diff_rule, #diff_str_obj, #diff_value, #diff_xccdf_select, #process_details_hash!, #result_from_details_hash
Constructor Details
#initialize(element, parent: nil, parent_node: nil) ⇒ Metadata
Returns a new instance of Metadata.
737 738 739 740 |
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 737 def initialize(element, parent: nil, parent_node: nil) super add_children(MetadataCisControls, element) end |
Class Method Details
.xpath ⇒ Object
750 751 752 |
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 750 def self.xpath 'metadata' end |
Instance Method Details
#eql?(other) ⇒ Boolean
742 743 744 |
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 742 def eql?(other) @children.map(&:to_s).join == other.children.map(&:to_s).join end |
#hash ⇒ Object
746 747 748 |
# File 'lib/abide_dev_utils/xccdf/parser/objects.rb', line 746 def hash @children.map(&:hash).join.hash end |