DBIx::Class::ServiceProxy - Service proxy class for DBIx::Class::Service


DBIx-Class-Service documentation Contained in the DBIx-Class-Service distribution.

Index


Code Index:

NAME

Top

DBIx::Class::ServiceProxy - Service proxy class for DBIx::Class::Service

VERSION

Top

version 0.02

SYNOPSIS

Top

This module is base class of internal classes by the concreate service classes. It is generated by automatically.

METHODS

Top

DBIx::Class::Service service_class()

It will be returned class name inherited from DBIx::Class::Service.

DBIx::Class::Schema schema()

It will be returned object inherited from DBIx::Class::Schema.

SEE ALSO

Top

DBIx::Class::Service
DBIx::Class::ServiceManager

AUTHOR

Top

Toru Yamaguchi, <zigorou@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-dbix-class-serviceproxy@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Top


DBIx-Class-Service documentation Contained in the DBIx-Class-Service distribution.
package DBIx::Class::ServiceProxy;

use strict;
use warnings;

use base qw(DBIx::Class);

__PACKAGE__->mk_classdata('service_class' => '');
__PACKAGE__->mk_classdata('schema');

our $VERSION = '0.02';

1; # End of DBIx::Class::ServiceProxy