The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Reaction::InterfaceModel::Action::Search::UpdateSpec - Update search specification

SYNOPSIS

  package MyApp::InterfaceModel::UpdateSearchSpec;
  use Reaction::Class;
  use Reaction::InterfaceModel::Reflector::SearchSpec;

  use aliased 'MyApp::InterfaceModel::SearchSpec';

  use namespace::autoclean;

  extends 'Reaction::InterfaceModel::Action::Search::UpdateSpec';

  # this will reflect the search spec as update spec in the current
  # class.
  my $info = reflect_attributes_from_target SearchSpec;

  sub _reflection_info { $info }

  1;