/usr/share/perl5/Net/OpenID/ExtensionMessage.pm is in libnet-openid-common-perl 1.20-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | package Net::OpenID::ExtensionMessage;
$Net::OpenID::ExtensionMessage::VERSION = '1.20';
use strict;
=head1 NAME
Net::OpenID::ExtensionMessage - Base class for extension messages
=head1 VERSION
version 1.20
=head1 DESCRIPTION
Instances of implementations of the interface provided by this
package are returned from various methods in L<Net::OpenID::Extension>
implementations.
=head1 METHODS
=head2 $emsg->extension_arguments
Return a hashref that maps extension namespace aliases as defined
in the corresponding L<Net::OpenID::Extension> to hashrefs of
key-value pairs for the arguments to include in that namespace.
=cut
sub extension_arguments {
return {};
}
1;
|