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: Poll.pm,v 1.4 2011/12/03 11:44:52 gavin Exp $ 6package Net::EPP::Frame::Command::Poll; 7use Net::EPP::Frame::Command::Poll::Req; 8use Net::EPP::Frame::Command::Poll::Ack; 9use base qw(Net::EPP::Frame::Command); 10use strict; 11 12=pod 13 14=head1 NAME 15 16Net::EPP::Frame::Command::Poll - an instance of L<Net::EPP::Frame::Command> 17for the EPP C<E<lt>PollE<gt>> command. 18 19=head1 OBJECT HIERARCHY 20 21 L<XML::LibXML::Node> 22 +----L<XML::LibXML::Document> 23 +----L<Net::EPP::Frame> 24 +----L<Net::EPP::Frame::Command> 25 +----L<Net::EPP::Frame::Command::Poll> 26 27=head1 METHODS 28 29This module does not define any methods in addition to those it inherits from 30its ancestors. 31 32=head1 AUTHOR 33 34CentralNic Ltd (http://www.centralnic.com/). 35 36=head1 COPYRIGHT 37 38This module is (c) 2016 CentralNic Ltd. This module is free software; you can 39redistribute it and/or modify it under the same terms as Perl itself. 40 41=head1 SEE ALSO 42 43=over 44 45=item * L<Net::EPP::Frame> 46 47=back 48 49=cut 50 511; 52