1# Copyright (c) 2016 CentralNic Ltd. All rights reserved. This program is
2# free software; you can redistribute it and/or modify it under the same
3# terms as Perl itself.
4#
5# $Id: Hello.pm,v 1.4 2011/12/03 11:44:51 gavin Exp $
6package Net::EPP::Frame::Hello;
7use base qw(Net::EPP::Frame);
8
9=pod
10
11=head1 NAME
12
13Net::EPP::Frame::Hello - an instance of L<Net::EPP::Frame> for client greetings
14
15=head1 DESCRIPTION
16
17This module is a subclass of L<Net::EPP::Frame> that represents EPP client
18greetings.
19
20Clients can send a greeting to an EPP server at any time during a session.
21According to the EPP RFC, the server must transmit an EPP greeting frame to the
22client upon connection, and in response to an EPP C<E<lt>helloE<gt>> command.
23The C<E<lt>greetingE<gt>> frame provides information about the server,
24including the server time, access control rules, and a list of the object
25types that are provisioned by the server.
26
27=head1 OBJECT HIERARCHY
28
29    L<XML::LibXML::Node>
30    +----L<XML::LibXML::Document>
31        +----L<Net::EPP::Frame>
32            +----L<Net::EPP::Frame::Hello>
33
34=head1 METHODS
35
36This module does not define any methods in addition to those it inherits from
37its ancestors.
38
39=head1 AUTHOR
40
41CentralNic Ltd (http://www.centralnic.com/).
42
43=head1 COPYRIGHT
44
45This module is (c) 2016 CentralNic Ltd. This module is free software; you can
46redistribute it and/or modify it under the same terms as Perl itself.
47
48=head1 SEE ALSO
49
50=over
51
52=item * L<Net::EPP::Frame>
53
54=back
55
56=cut
57
581;
59