The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

SRS::EPP::Command - encapsulation of received EPP commands

SYNOPSIS

  my $cmd = SRS::EPP::Command::SubClass->new
            (
               xmlschema => ...
               xmlstring => ...
            );

  my $response = $cmd->process;

DESCRIPTION

This module is a base class for EPP commands; these are messages sent from the client to the server.

ATTRIBUTES

xmlschema

The XML schema for this message, as a string. (XXX - this should be a class data variable)

xmlstring

The data of the message.

SEE ALSO

SRS::EPP::Command::Login, SRS::EPP::Message, SRS::EPP::Response