:SSL;
use LWP::UserAgent;
use HTTP::Request;
use MIME::Base64 qw();
use Net::SolarWinds::Log;
use JSON qw();
use URI::Encode qw(uri_encode);
use POSIX qw(strftime);
our $VERSION="1.22";
use base qw(
:JSON
This is a JSON object with the following options endabled: JSON->new->allow_nonref->utf8
=cut
# Global JSON OBJECT
our $JSON=JSON->new->allow_nonref->utf8;
=item * my $json=$class->get_json;
Returns the class level JSON object.
=cut
sub get_json { return $JSON; }
=item * $Net::SolarWinds::REST::UA
This is a LWP::UserAgent used to talk to CPM servers
=cut
# Global UA object
our $UA