Net-SAML2
view release on metacpan or search on metacpan
lib/Net/SAML2/SP.pm view on Meta::CPAN
(isa => 'Net::SAML2::AttributeConsumingService', is => 'ro', predicate => 'has_attribute_consuming_service');
has '_cert_text' => (isa => 'Str', is => 'ro', init_arg => undef, builder => '_build_cert_text', lazy => 1);
has '_encryption_key_text' => (isa => 'Str', is => 'ro', init_arg => undef, builder => '_build_encryption_key_text', lazy => 1);
has 'authnreq_signed' => (isa => 'Bool', is => 'ro', required => 0, default => 1);
has 'want_assertions_signed' => (isa => 'Bool', is => 'ro', required => 0, default => 1);
has 'sign_metadata' => (isa => 'Bool', is => 'ro', required => 0, default => 1);
has assertion_consumer_service => (is => 'ro', isa => 'ArrayRef', required => 1);
has single_logout_service => (is => 'ro', isa => 'ArrayRef', required => 1);
around BUILDARGS => sub {
my $orig = shift;
my $self = shift;
my %args = @_;
if (!exists $args{issuer} && exists $args{id}) {
Net::SAML2::Util::deprecation_warning
"id has been renamed to issuer and should be used instead";
( run in 0.724 second using v1.01-cache-2.11-cpan-5f2e87ce722 )