File Coverage

blib/lib/Net/DRI/Protocol/EPP/Extensions/VeriSign/Platforms/COM_NET.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, VeriSign EPP extensions
2             ##
3             ## Copyright (c) 2006,2008-2014,2016 Patrick Mevzek . All rights reserved.
4             ##
5             ## This file is part of Net::DRI
6             ##
7             ## Net::DRI is free software; you can redistribute it and/or modify
8             ## it under the terms of the GNU General Public License as published by
9             ## the Free Software Foundation; either version 2 of the License, or
10             ## (at your option) any later version.
11             ##
12             ## See the LICENSE file that comes with this distribution for more details.
13             ####################################################################################################
14              
15             package Net::DRI::Protocol::EPP::Extensions::VeriSign::Platforms::COM_NET;
16              
17 31     31   16409 use strict;
  31         43  
  31         739  
18 31     31   99 use warnings;
  31         30  
  31         675  
19              
20 31     31   108 use base qw/Net::DRI::Protocol::EPP/;
  31         33  
  31         12092  
21              
22             =pod
23              
24             =head1 NAME
25              
26             Net::DRI::Protocol::EPP::Extensions::VeriSign::Platforms::COM_NET - VeriSign SRS (.COM/.NET) EPP extensions for Net::DRI
27              
28             =head1 DESCRIPTION
29              
30             Please see the README file for details.
31              
32             Note that the PremiumDomain extension is not loaded by default.
33              
34             =head1 SUPPORT
35              
36             For now, support questions should be sent to:
37              
38             Enetdri@dotandco.comE
39              
40             Please also see the SUPPORT file in the distribution.
41              
42             =head1 SEE ALSO
43              
44             Ehttp://www.dotandco.com/services/software/Net-DRI/E
45              
46             =head1 AUTHOR
47              
48             Patrick Mevzek, Enetdri@dotandco.comE
49              
50             =head1 COPYRIGHT
51              
52             Copyright (c) 2006,2008-2014,2016 Patrick Mevzek .
53             All rights reserved.
54              
55             This program is free software; you can redistribute it and/or modify
56             it under the terms of the GNU General Public License as published by
57             the Free Software Foundation; either version 2 of the License, or
58             (at your option) any later version.
59              
60             See the LICENSE file that comes with this distribution for more details.
61              
62             =cut
63              
64             ####################################################################################################
65              
66             sub setup
67             {
68             my ($self,$rp)=@_;
69             $self->default_parameters()->{subproductid}=$rp->{default_product} || '_auto_';
70             $self->default_parameters()->{whois_info}=0;
71             return;
72             }
73              
74             ## List of VeriSign extensions: http://www.verisigninc.com/en_US/channel-resources/domain-registry-products/epp-sdks/index.xhtml?loc=en_US
75             ## But see http://www.verisign.com/assets/epp-sdk/Verisign-EPP-SDK-Prog-Guide.pdf ยง13 Mappings and Extensions
76             sub default_extensions
77             {
78             my ($self,$rp)=@_;
79             my @c=qw/VeriSign::Sync VeriSign::PollLowBalance VeriSign::PollRGP VeriSign::IDNLanguage VeriSign::ClientAttributes VeriSign::Balance VeriSign::WhoisInfo GracePeriod SecDNS/;
80             push @c,qw/VeriSign::TwoFactorAuth VeriSign::ZoneManagement/; ## not explained in VeriSign SDK Prog Guide, so just add them here
81             push @c,'VeriSign::NameStore'; ## this must come last
82             return @c;
83             }
84              
85             ####################################################################################################
86             1;