/usr/share/perl5/JSON/RPC/Procedure.pm is in libjson-rpc-perl 1.06-2.
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 34 35 36 37 38 39 | package JSON::RPC::Procedure;
use strict;
use Carp ();
use Class::Accessor::Lite
new => 1,
rw => [ qw(
id
method
params
has_id
jsonrpc
) ]
;
1;
__END__
=head1 NAME
JSON::RPC::Procedure - A JSON::RPC Procedure
=head1 SYNOPSIS
use JSON::RPC::Procedure;
my $procedure = JSON::RPC::Procedure->new(
id => ...,
method => ...
params => ...
jsonrpc => ...
has_id => ... (a flag that signals that a procedure appears to be a notification when not set)
);
=head1 DESCRIPTION
A container for JSON RPC procedure information
=cut
|