DNS::Oterica::Role::RecordMaker - a delegation class for the DNSO recordmaker.


DNS-Oterica documentation Contained in the DNS-Oterica distribution.

Index


Code Index:

NAME

Top

DNS::Oterica::Role::RecordMaker - a delegation class for the DNSO recordmaker.

VERSION

Top

version 0.100001

DESCRIPTION

Top

DNS::Oterica::Role::RecordMaker delegates to an underlying record maker. It exposes this record maker with its rec method.

ATTRIBUTES

Top

rec

The record maker, e.g. DNS::Oterica::RecordMaker::TinyDNS.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


DNS-Oterica documentation Contained in the DNS-Oterica distribution.

package DNS::Oterica::Role::RecordMaker;
BEGIN {
  $DNS::Oterica::Role::RecordMaker::VERSION = '0.100001';
}
use Moose::Role;
# ABSTRACT: a delegation class for the DNSO recordmaker.

use DNS::Oterica::RecordMaker::TinyDNS;


has rec => (
  is  => 'ro',
  isa => 'Str', # XXX or object doing role, etc
  default => 'DNS::Oterica::RecordMaker::TinyDNS',
);

no Moose::Role;
1

__END__