| DNS-Oterica documentation | Contained in the DNS-Oterica distribution. |
DNS::Oterica::Role::RecordMaker - a delegation class for the DNSO recordmaker.
version 0.100001
DNS::Oterica::Role::RecordMaker delegates to an underlying record maker. It
exposes this record maker with its rec method.
The record maker, e.g. DNS::Oterica::RecordMaker::TinyDNS.
Ricardo SIGNES <rjbs@cpan.org>
This software is copyright (c) 2011 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| 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__