digidentity/libsaml

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

Summary

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

      tag "Extensions"
      namespace "samlp"

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