NAME
perfSONAR_PS::Datatypes::EventTypes::Tools - a container for various perfSONAR http://ggf.org/ns/nmwg/tools/ eventtypes
DESCRIPTION
The purpose of this module is to create OO interface for tools eventtypes and therefore add the layer of abstraction for any tools eventtypes related operation ( mostly for perfSONAR response). All perfSONAR-PS classes should work with the instance of this class and avoid using explicit eventtype declarations.
SYNOPSIS
use perfSONAR_PS::Datatypes::EventTypes::Tools;
# create Tools eventtype object with default URIs
my $tools_event = perfSONAR_PS::Datatypes::EventTypes::Tools->new();
# overwrite only specific Namesapce with custom URI
$tools_event = perfSONAR_PS::Datatypes::EventTypes::Tools->new( {'pinger' => 'http://ggf.org/ns/nmwg/tools/pinger/2.0'});
my $pinger_tool = $tools_event->pinger; ## get URI by key
$tools_event->pinger( 'http://ggf.org/ns/nmwg/tools/pinger/2.0'); ## set URI by key
Methods
There is accessor mutator for every defined Characteristic
new( )
Creates a new object, pass hash ref as collection of event types for tools namespace
Supported Tools:
'pinger' 'traceroute','snmp', 'ping', 'owamp', 'bwctl', 'pinger', 'iperf'
SEE ALSO
To join the 'perfSONAR-PS' mailing list, please visit:
https://mail.internet2.edu/wws/info/i2-perfsonar
The perfSONAR-PS subversion repository is located at:
https://svn.internet2.edu/svn/perfSONAR-PS
Questions and comments can be directed to the author, or the mailing list.
AUTHOR
Maxim Grigoriev, <maxim@fnal.gov>, 2007
COPYRIGHT AND LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.