File Coverage

blib/lib/Net/DRI/Protocol/EPP/Extensions/ARNES/Status.pm
Criterion Covered Total %
statement 12 21 57.1
branch n/a
condition n/a
subroutine 4 9 44.4
pod 3 5 60.0
total 19 35 54.2


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, EPP Status for .SI
2             ##
3             ## Copyright (c) 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::ARNES::Status;
16              
17 1     1   4 use base qw!Net::DRI::Protocol::EPP::Core::Status!;
  1         2  
  1         62  
18              
19 1     1   4 use strict;
  1         2  
  1         14  
20 1     1   3 use warnings;
  1         1  
  1         23  
21 1     1   3 use feature 'state';
  1         2  
  1         221  
22              
23             =pod
24              
25             =head1 NAME
26              
27             Net::DRI::Protocol::EPP::Extensions::ARNES::Status - EPP .SI Status for Net::DRI
28              
29             =head1 DESCRIPTION
30              
31             Please see the README file for details.
32              
33             =head1 SUPPORT
34              
35             For now, support questions should be sent to:
36              
37             Enetdri@dotandco.comE
38              
39             Please also see the SUPPORT file in the distribution.
40              
41             =head1 SEE ALSO
42              
43             Ehttp://www.dotandco.com/services/software/Net-DRI/E
44              
45             =head1 AUTHOR
46              
47             Patrick Mevzek, Enetdri@dotandco.comE
48              
49             =head1 COPYRIGHT
50              
51             Copyright (c) 2016 Patrick Mevzek .
52             All rights reserved.
53              
54             This program is free software; you can redistribute it and/or modify
55             it under the terms of the GNU General Public License as published by
56             the Free Software Foundation; either version 2 of the License, or
57             (at your option) any later version.
58              
59             See the LICENSE file that comes with this distribution for more details.
60              
61             =cut
62              
63             ####################################################################################################
64              
65             sub new
66             {
67 0     0 0   my $class=shift;
68 0           my $self=$class->SUPER::new(shift);
69              
70 0           state $rs={ 'active' => 'inactive' };
71 0           $self->_register_pno($rs); ## this will overwrite what has been done in SUPER::new
72 0           return $self;
73             }
74              
75             sub is_core_status
76             {
77 0     0 0   return (shift=~m/^(?:client(?:Hold|(?:Delete|Renew|Update|Transfer)Prohibited)|inactive)$/);
78             }
79              
80 0     0 1   sub is_active { return shift->has_not(qw/clientHold serverHold inactive pendingQuarantine pendingLegislativeReturnQuarantine pendingLegislativeReturn/); }
81 0     0 1   sub is_published { return shift->has_not(qw/clientHold serverHold inactive pendingQuarantine pendingLegislativeReturnQuarantine pendingLegislativeReturn/); }
82 0     0 1   sub is_pending { return shift->has_any(qw/pendingCreate pendingDelete pendingRenew pendingTransfer pendingUpdate pendingLegislativeReturn pendingLegislativeReturnQuarantine pendingQuarantine/); }
83              
84             ####################################################################################################
85             1;