diff options
author | jeff <jeff> | 2010-03-31 16:23:40 +0000 |
---|---|---|
committer | jeff <jeff> | 2010-03-31 16:23:40 +0000 |
commit | 816672146578e431cb606071f1ac0be2afd5399f (patch) | |
tree | f6d461ae26f3b401251b3f5804479d95c6b421ff /lib/Net/DashCS.pm |
initial importimport
Diffstat (limited to 'lib/Net/DashCS.pm')
-rw-r--r-- | lib/Net/DashCS.pm | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/Net/DashCS.pm b/lib/Net/DashCS.pm new file mode 100644 index 0000000..82f9608 --- /dev/null +++ b/lib/Net/DashCS.pm @@ -0,0 +1,44 @@ +package Net::DashCS; + +use strict; +use vars qw( $VERSION ); +$VERSION = '0.01'; +sub Version { $VERSION }; + +1; + +__END__ + +=head1 NAME + +Net::DashCS - Perl client interface to Dash Carrier Services SOAP api + +=head1 SYNOPSIS + +use Net::DashCS::Interfaces::EmergencyProvisioningService::EmergencyProvisioningPort; + +my $port = new Net::DashCS::Interfaces::EmergencyProvisioningService::EmergencyProvisioningPort; + +my $response = $port->getURIs(); + +=head1 DESCRIPTION + +Net::DashCS allows perl programs to perform provisioning of Dash Carrier +Services. Presently on the Emergency provisioning is provided. + +=head1 SEE ALSO + +L<Net::DashCS::Interfaces::EmergencyProvisioningService::EmergencyProvisioningPort> and http://dashcs.com + +=head1 BUGS + +Creepy. + +=head1 AUTHOR AND COPYRIGHT + +Jeff Finucane jeff-net-dashcs@weasellips.com + +This library is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +=cut |