digidentity/libsaml

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

Summary

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

      tag "ServiceDescription"
      register_namespace "md", Saml::MD_NAMESPACE
      namespace "md"

      content :value, String
    end
  end
end