File Coverage

blib/lib/Net/DRI/Protocol/IRIS/DCHK/Status.pm
Criterion Covered Total %
statement 12 23 52.1
branch 0 4 0.0
condition 0 3 0.0
subroutine 4 8 50.0
pod 3 4 75.0
total 19 42 45.2


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, IRIS DCHK Status
2             ##
3             ## Copyright (c) 2008,2010 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::IRIS::DCHK::Status;
16              
17 1     1   643 use base qw!Net::DRI::Data::StatusList!;
  1         1  
  1         63  
18              
19 1     1   4 use strict;
  1         1  
  1         14  
20 1     1   4 use warnings;
  1         1  
  1         22  
21              
22 1     1   3 use Net::DRI::Exception;
  1         1  
  1         124  
23              
24             =pod
25              
26             =head1 NAME
27              
28             Net::DRI::Protocol::IRIS::DCHK::Status - IRIS DCHK Domain Status 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) 2008,2010 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 new
67             {
68 0     0 0   my $class=shift;
69 0           my $self=$class->SUPER::new('iris-dchk','1.0');
70 0           my $msg=shift;
71 0 0         return $self unless defined $msg;
72 0 0         Net::DRI::Exception::err_invalid_parameters('new() expects a ref array') unless ref $msg eq 'ARRAY';
73 0           $self->add(@$msg);
74 0           return $self;
75             }
76              
77 0   0 0 1   sub is_active { my $s; return $s->has_any('active') && $s->has_not('inactive'); }
  0            
78 0     0 1   sub is_published { return shift->has_not('inactive'); }
79 0     0 1   sub is_pending { return shift->has_any('dispute'); }
80              
81             ####################################################################################################
82             1;