Sha256: c13d21c045805a13e520255c83eb7b6188ec20348caf55a345fbcfb0e1513ca6

Contents?: true

Size: 631 Bytes

Versions: 51

Compression:

Stored size: 631 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, HappyMapper::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

51 entries across 51 versions & 1 rubygems

Version Path
libsaml-2.14.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.13.1 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.12.1 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.12.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.11.2 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.11.1 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.11.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.10.7 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.10.6 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.10.5 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.10.4 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.10.3 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.10.2 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.10.1 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.10.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.9.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.8.1 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.8.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.7.0 lib/saml/elements/idp_sso_descriptor.rb
libsaml-2.6.9 lib/saml/elements/idp_sso_descriptor.rb