Method: Spid::Configuration#service_provider

Defined in:
lib/spid/configuration.rb

#service_providerObject



71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/spid/configuration.rb', line 71

def service_provider
  @service_provider ||=
    begin
      Spid::Saml2::ServiceProvider.new(
        acs_binding: acs_binding, acs_path: acs_path, slo_path: slo_path,
        slo_binding: slo_binding, metadata_path: ,
        private_key: private_key, certificate: certificate,
        digest_method: digest_method, signature_method: signature_method,
        attribute_services: attribute_services, host: hostname
      )
    end
end