File Coverage

blib/lib/Net/DRI/DRD/NU.pm
Criterion Covered Total %
statement 12 25 48.0
branch 0 2 0.0
condition n/a
subroutine 4 11 36.3
pod 4 7 57.1
total 20 45 44.4


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, .NU policies
2             ##
3             ## Copyright (c) 2007,2008,2009 HEXONET Support GmbH, http://www.hexonet.com,
4             ## Alexander Biehl .
5             ## (c) 2010,2011 Patrick Mevzek
6             ## All rights reserved.
7             ##
8             ## This file is part of Net::DRI
9             ##
10             ## Net::DRI is free software; you can redistribute it and/or modify
11             ## it under the terms of the GNU General Public License as published by
12             ## the Free Software Foundation; either version 2 of the License, or
13             ## (at your option) any later version.
14             ##
15             ## See the LICENSE file that comes with this distribution for more details.
16             ####################################################################################################
17              
18             package Net::DRI::DRD::NU;
19              
20 1     1   726 use strict;
  1         2  
  1         28  
21 1     1   4 use warnings;
  1         1  
  1         23  
22              
23 1     1   3 use base qw/Net::DRI::DRD/;
  1         2  
  1         82  
24              
25 1     1   5 use DateTime::Duration;
  1         1  
  1         195  
26              
27             =pod
28              
29             =head1 NAME
30              
31             Net::DRI::DRD::NU - .NU policies for Net::DRI
32              
33             =head1 DESCRIPTION
34              
35             Please see the README file for details.
36              
37             =head1 SUPPORT
38              
39             For now, support questions should be sent to:
40              
41             Enetdri@dotandco.comE
42              
43             Please also see the SUPPORT file in the distribution.
44              
45             =head1 SEE ALSO
46              
47             Ehttp://www.dotandco.com/services/software/Net-DRI/E
48              
49             =head1 AUTHOR
50              
51             Patrick Mevzek, Enetdri@dotandco.comE
52              
53             =head1 COPYRIGHT
54              
55             Copyright (c) 2007,2008,2009 HEXONET Support GmbH, Ehttp://www.hexonet.comE,
56             Alexander Biehl .
57             (c) 2010,2011 Patrick Mevzek
58             All rights reserved.
59              
60             This program is free software; you can redistribute it and/or modify
61             it under the terms of the GNU General Public License as published by
62             the Free Software Foundation; either version 2 of the License, or
63             (at your option) any later version.
64              
65             See the LICENSE file that comes with this distribution for more details.
66              
67             =cut
68              
69             ####################################################################################################
70              
71             sub new
72             {
73 0     0 0   my $class=shift;
74 0           my $self=$class->SUPER::new(@_);
75 0           $self->{info}->{host_as_attr}=0;
76 0           return $self;
77             }
78              
79 0     0 1   sub periods { return map { DateTime::Duration->new(years => $_) } (1..10); }
  0            
80 0     0 1   sub name { return 'NU'; }
81 0     0 1   sub tlds { return ('nu'); }
82 0     0 1   sub object_types { return ('domain','contact','ns'); }
83 0     0 0   sub profile_types { return qw/epp/; }
84              
85             sub transport_protocol_default
86             {
87 0     0 0   my ($self,$type)=@_;
88              
89 0 0         return ('Net::DRI::Transport::Socket',{},'Net::DRI::Protocol::EPP',{}) if $type eq 'epp';
90 0           return;
91             }
92              
93             ####################################################################################################
94             1;