File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed
Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 11package Net::SAML2::Protocol::Artifact ;
2+ use Moose;
23# VERSION
34
4- use Moose;
55use MooseX::Types::DateTime qw/ DateTime / ;
66use DateTime::Format::XSD;
77use Net::SAML2::XML::Util qw/ no_comments / ;
Original file line number Diff line number Diff line change 11package Net::SAML2::Protocol::LogoutResponse ;
2+ use Moose;
23# VERSION
34
4- use Moose;
55use MooseX::Types::URI qw/ Uri / ;
66use Net::SAML2::XML::Util qw/ no_comments / ;
77use Net::SAML2::Util qw/ deprecation_warning / ;
@@ -83,12 +83,24 @@ around BUILDARGS => sub {
8383 return $self -> $orig (%args );
8484};
8585
86+ =head2 response_to()
87+
88+ Deprecated use B<in_response_to >
89+
90+ =cut
91+
8692sub response_to {
8793 my $self = shift ;
8894 deprecation_warning(" Please use in_response_to instead of response_to" );
8995 return $self -> in_response_to;
9096}
9197
98+ =head2 substatus()
99+
100+ Deprecated use B<sub_status >
101+
102+ =cut
103+
92104sub substatus {
93105 my $self = shift ;
94106 deprecation_warning(" Please use sub_status instead of substatus" );
Original file line number Diff line number Diff line change 11package Net::SAML2::Role::ProtocolMessage ;
2- # VERSION
3-
42use Moose::Role;
53
4+ # VERSION
5+
66# ABSTRACT: Common behaviour for Protocol messages
77
88use feature qw( state) ;
You can’t perform that action at this time.
0 commit comments