Sha256: b1e67a0e535b725e5670ed9c89acb2825cf74ed2eb4eb258a039d03777387aee

Contents?: true

Size: 693 Bytes

Versions: 4

Compression:

Stored size: 693 Bytes

Contents

signature_for(reference_id: id, xml: xml)
xml.IDPSSODescriptor descriptor_options do
  configuration.certificates(use: :signing).each do |certificate|
    render certificate, xml: xml
  end
  configuration.certificates(use: :encryption).each do |certificate|
    render certificate, xml: xml
  end
  logout_urls.each do |item|
    xml.SingleLogoutService Binding: item[:binding], Location: item[:location]
  end
  name_id_formats.each do |format|
    xml.NameIDFormat format
  end
  single_sign_on_urls.each do |item|
    xml.SingleSignOnService Binding: item[:binding], Location: item[:location]
  end
  attributes.each do |attribute|
    xml.tag! 'saml:Attribute', Name: attribute
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
saml-kit-0.2.10 lib/saml/kit/builders/templates/identity_provider_metadata.builder
saml-kit-0.2.9 lib/saml/kit/builders/templates/identity_provider_metadata.builder
saml-kit-0.2.8 lib/saml/kit/builders/templates/identity_provider_metadata.builder
saml-kit-0.2.7 lib/saml/kit/builders/templates/identity_provider_metadata.builder