Sha256: 0fab16a4d71a7fb807afd78b6ef88c8065b2ef8f602bcdd85a0fc31ecba95297

Contents?: true

Size: 620 Bytes

Versions: 14

Compression:

Stored size: 620 Bytes

Contents

module Saml
  module Elements
    class IDPSSODescriptor
      include Saml::ComplexTypes::SSODescriptorType

      class SingleSignOnService
        include Saml::ComplexTypes::EndpointType
        tag 'SingleSignOnService'
      end

      tag 'IDPSSODescriptor'

      attribute :want_authn_requests_signed, XmlMapper::Boolean, tag: "WantAuthnRequestsSigned", default: false

      has_many :single_sign_on_services, SingleSignOnService

      validates :single_sign_on_services, presence: true

      def initialize(*args)
        super(*args)
        self.single_sign_on_services ||= []
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
libsaml-3.13.1 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.13.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.12.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.11.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.10.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.9.3 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.9.2 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.9.1 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.9.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.8.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.7.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.6.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.5.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-3.4.0 lib/saml/elements/idp_sso_descriptor.rb