digidentity/libsaml

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

Summary

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

      tag "Extensions"
      namespace "md"

      has_one :entity_attributes, Saml::Elements::EntityAttributes
      has_one :publication_info, Saml::Elements::PublicationInfo
    end
  end
end