File Coverage

blib/lib/Net/DRI/Protocol/EPP/Extensions/ME.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, .ME EPP extensions
2             ##
3             ## Copyright (c) 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::ME;
16              
17 1     1   664 use strict;
  1         1  
  1         23  
18 1     1   3 use warnings;
  1         1  
  1         21  
19              
20 1     1   3 use base qw/Net::DRI::Protocol::EPP/;
  1         1  
  1         58  
21              
22             ####################################################################################################
23              
24             sub setup
25             {
26             my ($self,$rp)=@_;
27             $self->ns({
28             ipr => ['urn:afilias:params:xml:ns:ipr-1.1','ipr-1.1.xsd'],
29             oxrs => ['urn:afilias:params:xml:ns:oxrs-1.1','oxrs-1.1.xsd'],
30             });
31             ## What else ?
32             return;
33             }
34              
35             sub default_extensions { return qw/Afilias::IPR Afilias::Message/; } ## What else ?
36              
37             ####################################################################################################
38             1;
39              
40             __END__