blob: 82f96082ccd928c9574e26f1aa6fc4fd16acc055 (
plain)
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
40
41
42
43
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
|