line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
## Domain Registry Interface, Neulevel .BIZ EPP extensions |
2
|
|
|
|
|
|
|
## |
3
|
|
|
|
|
|
|
## Copyright (c) 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::BIZ; |
16
|
|
|
|
|
|
|
|
17
|
1
|
|
|
1
|
|
858
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
43
|
|
18
|
1
|
|
|
1
|
|
8
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
43
|
|
19
|
|
|
|
|
|
|
|
20
|
1
|
|
|
1
|
|
9
|
use base qw/Net::DRI::Protocol::EPP/; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
84
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=pod |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 NAME |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Net::DRI::Protocol::EPP::Extensions::BIZ - Neulevel .BIZ EPP extensions for Net::DRI |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 DESCRIPTION |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Please see the README file for details. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 SUPPORT |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
For now, support questions should be sent to: |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Enetdri@dotandco.comE |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Please also see the SUPPORT file in the distribution. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 SEE ALSO |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Ehttp://www.dotandco.com/services/software/Net-DRI/E |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 AUTHOR |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Patrick Mevzek, Enetdri@dotandco.comE |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 COPYRIGHT |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Copyright (c) 2013 Patrick Mevzek . |
51
|
|
|
|
|
|
|
All rights reserved. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify |
54
|
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by |
55
|
|
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or |
56
|
|
|
|
|
|
|
(at your option) any later version. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
See the LICENSE file that comes with this distribution for more details. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
#################################################################################################### |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
sub setup |
65
|
|
|
|
|
|
|
{ |
66
|
|
|
|
|
|
|
my ($self,$rp)=@_; |
67
|
|
|
|
|
|
|
$self->ns({neulevel => ['urn:ietf:params:xml:ns:neulevel-1.0','neulevel-1.0.xsd']}); |
68
|
|
|
|
|
|
|
return; |
69
|
|
|
|
|
|
|
} |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
sub default_extensions { return qw/NeuLevel::IDNLanguage NeuLevel::UIN SecDNS GracePeriod/; } |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
#################################################################################################### |
74
|
|
|
|
|
|
|
1; |