File Coverage

blib/lib/Net/DRI/Protocol/EPP/Extensions/DNSBE.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, DNSBE EPP extensions
2             ##
3             ## Copyright (c) 2006-2010,2013 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::DNSBE;
16              
17 3     3   2255 use strict;
  3         4  
  3         72  
18 3     3   10 use warnings;
  3         3  
  3         65  
19              
20 3     3   11 use base qw/Net::DRI::Protocol::EPP/;
  3         3  
  3         873  
21              
22             use Net::DRI::Data::Contact::BE;
23              
24             =pod
25              
26             =head1 NAME
27              
28             Net::DRI::Protocol::EPP::Extensions::DNSBE - DNSBE (.BE) EPP extensions for Net::DRI
29              
30             =head1 DESCRIPTION
31              
32             Please see the README file for details.
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-2010,2013 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             my $version=$self->version();
70             $self->ns({ dnsbe => ['http://www.dns.be/xml/epp/dnsbe-1.0','dnsbe-1.0.xsd'],
71             nsgroup => ['http://www.dns.be/xml/epp/nsgroup-1.0','nsgroup-1.0.xsd'],
72             keygroup=> ['http://www.dns.be/xml/epp/keygroup-1.0','keygroup-1.0.xsd'],
73             });
74             $self->capabilities('contact_update','status',undef); ## No changes in status possible for .BE domains/contacts
75             $self->capabilities('domain_update','status',undef);
76             $self->capabilities('domain_update','auth',undef); ## No change in authinfo (since it is not used from the beginning)
77             $self->capabilities('domain_update','nsgroup',['add','del']);
78             $self->factories('contact',sub { return Net::DRI::Data::Contact::BE->new(); });
79             $self->default_parameters({domain_create => { auth => { pw => '' } } });
80             return;
81             }
82              
83             sub core_contact_types { return ('admin','tech','billing','onsite'); }
84             sub default_extensions { return qw/DNSBE::Message DNSBE::Domain DNSBE::Contact DNSBE::Notifications NSgroup Keygroup SecDNS/; }
85              
86             ####################################################################################################
87             1;