Name Change
[dbsrgits/DBIx-Class-Schema-RestrictWithObject.git] / lib / DBIx / Class / Schema / RestrictWithObject / RestrictComp / Schema.pm
CommitLineData
d87edac9 1package DBIx::Class::Schema::RestrictWithObject::RestrictComp::Schema;
772c89c1 2
3use strict;
4use warnings;
5use base qw/DBIx::Class::AccessorGroup/;
6
7=head1 DESCRIPTION
8
d87edac9 9For general usage please see L<DBIx::Class::Schema::RestrictWithObject>, the information
772c89c1 10provided here is not meant for general use and is subject to change. In the interest
11of transparency the functionality presented is documented, but all methods should be
12considered private and, as such, subject to incompatible changes and removal.
13
d87edac9 14=head1 ADDITIONAL ACCESSORS
772c89c1 15
d87edac9 16=head2 restricting_object
772c89c1 17
d87edac9 18Store the object used to restict resultsets
772c89c1 19
20=head2 restricted_prefix
21
d87edac9 22Store the prefix, if any, to use when looking for the appropriate restrict
23methods in the C<restricting_object>
772c89c1 24
25=cut
26
d87edac9 27__PACKAGE__->mk_group_accessors('simple' => 'restricting_object');
772c89c1 28__PACKAGE__->mk_group_accessors('simple' => 'restricted_prefix');
29
301;
31
32=head1 SEE ALSO
33
d87edac9 34L<DBIx::Class::Schema::RestrictWithObject>,
772c89c1 35
36=cut