digidentity/libsaml

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

Summary

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

      tag 'SessionIndex'
      register_namespace 'samlp', Saml::SAMLP_NAMESPACE
      namespace 'samlp'

      content :value, String
    end
  end
end