Sha256: 01af32a7c1d3108e2414c09633e57c2a371bf79fe0c35ab65a1ec3326bda5b5c

Contents?: true

Size: 670 Bytes

Versions: 4

Compression:

Stored size: 670 Bytes

Contents

signature_for(reference_id: id, xml: xml)
xml.SPSSODescriptor 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
  acs_urls.each_with_index do |item, index|
    xml.AssertionConsumerService Binding: item[:binding], Location: item[:location], index: index, isDefault: index == 0 ? true : false
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

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