File Coverage

blib/lib/Net/DRI/DRD/auDA.pm
Criterion Covered Total %
statement 12 26 46.1
branch 0 4 0.0
condition n/a
subroutine 4 11 36.3
pod 4 7 57.1
total 20 48 41.6


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