Net::RRP::Request::Reverse - rrp reverse request representation. This command must reverse protocol for replication issues.


Net-RRP documentation Contained in the Net-RRP distribution.

Index


Code Index:

NAME

Top

Net::RRP::Request::Reverse - rrp reverse request representation. This command must reverse protocol for replication issues.

SYNOPSIS

Top

 use Net::RRP::Request::Reverse;
 my $reverseRequest = new Net::RRP::Request::Reverse ();

DESCRIPTION

Top

This is a rrp reverse request representation class. RRP rfc extension.

getName

return a 'Reverse'

setEntity

throw Net::RRP::Exception::InvalidEntityValue immediate

setOption

throw Net::RRP::Exception::InvalidCommandOption () immediate

AUTHOR AND COPYRIGHT

Top

SEE ALSO

Top

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__