digidentity/libsaml

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

Summary

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

      tag 'NameIDPolicy'
      namespace 'samlp'

      attribute :allow_create, Boolean, tag: "AllowCreate"
      attribute :format, String, tag: "Format"

    end
  end
end