The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package DBIx::NoSQL::Store::Manager::StoreIndex;
BEGIN {
  $DBIx::NoSQL::Store::Manager::StoreIndex::AUTHORITY = 'cpan:YANICK';
}
{
  $DBIx::NoSQL::Store::Manager::StoreIndex::VERSION = '0.2.2';
}
# ABSTRACT: Marks attributes to be indexed in the store


use Moose::Role;
Moose::Util::meta_attribute_alias('StoreIndex');

has store_isa => (
    is => 'rw',
    isa => 'Str',
    predicate => 'has_store_isa',
);

1;

__END__

=pod

=head1 NAME

DBIx::NoSQL::Store::Manager::StoreIndex - Marks attributes to be indexed in the store

=head1 VERSION

version 0.2.2

=head1 SYNOPSIS

    # in a class consuming the DBIx::NoSQL::Store::Manager::Model role

    has something => (
        traits => [ 'StoreIndex' ],
        is => 'ro',
    );

=head1 DESCRIPTION

I<DBIx::NoSQL::Store::Manager::StoreIndex> (also aliased to I<StoreIndex>)
is used to mark attributes that are to be indexed by the
L<DBIx::NoSQL::Store::Manager> store.

=head1 AUTHOR

Yanick Champoux <yanick@babyl.dyndns.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Yanick Champoux.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut