Reaction::InterfaceModel::Action::DBIC::Result - Reaction::InterfaceModel::Action::DBIC::Result documentation


Reaction documentation Contained in the Reaction distribution.

Index


Code Index:

NAME

Top

Reaction::InterfaceModel::Action::DBIC::Result

DESCRIPTION

Top

Base class for actions that apply to DBIC row objects. Extends InterfaceModel::Action

ATTRIBUTES

Top

target_model

Extends target_model by assigning it a type constraint of Row.

SEE ALSO

Top

Action::DBIC::ResultSet,

AUTHORS

Top

See Reaction::Class for authors.

LICENSE

Top

See Reaction::Class for the license.


Reaction documentation Contained in the Reaction distribution.

package Reaction::InterfaceModel::Action::DBIC::Result;

use Reaction::InterfaceModel::Action;
use Reaction::Types::DBIC 'Row';
use Reaction::Class;

use namespace::clean -except => [ qw(meta) ];
extends 'Reaction::InterfaceModel::Action';

has '+target_model' => (isa => Row);

__PACKAGE__->meta->make_immutable;

1;

__END__;