digidentity/libsaml

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

Summary

Maintainability
A
0 mins
Test Coverage
module Saml
  module Elements
    class AttributeStatement
      include Saml::Base
      include Saml::AttributeFetcher

      tag 'AttributeStatement'
      register_namespace 'saml', Saml::SAML_NAMESPACE
      namespace 'saml'

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