| Net-RRP documentation | Contained in the Net-RRP distribution. |
Net::RRP::Request::Reverse - rrp reverse request representation. This command must reverse protocol for replication issues.
use Net::RRP::Request::Reverse; my $reverseRequest = new Net::RRP::Request::Reverse ();
This is a rrp reverse request representation class. RRP rfc extension.
return a 'Reverse'
throw Net::RRP::Exception::InvalidEntityValue immediate
throw Net::RRP::Exception::InvalidCommandOption () immediate
Net::RRP::Request::Reverse (C) Vladimir B. Grebenschikov
TSB "Russian Express"
vova@express.ru
All rights reserved.
You may distribute this package under the terms of either the GNU
General Public License or the Artistic License, as specified in the
Perl README file.
Net::RRP::Request(3), Net::RRP::Codec(3), RFC 2832, Net::RRP::Exception::InvalidCommandOption(3), Net::RRP::Exception::InvalidEntityValue(3)
| Net-RRP documentation | Contained in the Net-RRP distribution. |
package Net::RRP::Request::Reverse; use strict; use Net::RRP::Request; use Net::RRP::Exception::InvalidCommandOption; use Net::RRP::Exception::InvalidEntityValue; @Net::RRP::Request::Reverse::ISA = qw(Net::RRP::Request); $Net::RRP::Request::Reverse::VERSION = '0.1';
sub getName { 'Reverse' };
sub setEntity { throw Net::RRP::Exception::InvalidEntityValue (); }
sub setOption { throw Net::RRP::Exception::InvalidCommandOption (); }
1; __END__