NAME
Net::SAML2::Protocol::LogoutResponse - SAML2 LogoutResponse Protocol object
VERSION
version 0.81
SYNOPSIS
my $logout_req = Net::SAML2::Protocol::LogoutResponse->new(
issuer => $issuer,
destination => $destination,
status => $status,
in_response_to => $in_response_to,
);
DESCRIPTION
This object deals with the LogoutResponse messages from SAML. It implements the role Net::SAML2::Role::ProtocolMessage.
METHODS
new( ... )
Constructor. Returns an instance of the LogoutResponse object.
Arguments:
- issuer
-
SP's identity URI (required)
- destination
-
IdP's identity URI
- status
-
Response status (required)
- substatus
-
The sub status
- in_response_to
-
Request ID we're responding to (required);
response_to()
Deprecated use in_response_to
new_from_xml( ... )
Create a LogoutResponse object from the given XML.
Arguments:
- xml
-
XML data
as_xml( )
Returns the LogoutResponse as XML.
SEE ALSO
Net::SAML2::Roles::ProtocolMessage
AUTHORS
Chris Andrews <chrisa@cpan.org>
Timothy Legge <timlegge@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2024 by Venda Ltd, see the CONTRIBUTORS file for others.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.