digidentity/libsaml

View on GitHub
lib/saml/elements/entity_attributes.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Saml
  module Elements
    class EntityAttributes
      include Saml::Base
      include Saml::XMLHelpers

      register_namespace "mdattr", Saml::MD_ATTR_NAMESPACE

      tag "EntityAttributes"
      namespace "mdattr"

      has_many :attributes, Saml::Elements::Attribute
    end
  end
end