digidentity/libsaml

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

Summary

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

      tag 'NameIDFormat'
      register_namespace 'md', Saml::MD_NAMESPACE
      namespace 'md'

      content :value, String
    end
  end
end