The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Catalyst::Model::WebService::Lucene;

use base qw( WebService::Lucene Catalyst::Model );

use strict;
use warnings;

our $VERSION = '0.05';

=head1 NAME

Catalyst::Model::WebService::Lucene - Use WebService::Lucene in your Catalyst application

=head1 SYNOPSIS

    package MyApp::Model::Lucene;
    
    use base qw( Catalyst::Model::WebService::Lucene );
    
    __PACKAGE__->config(
        server => 'http://localhost:8080/lucene/'
    );

=head1 DESCRIPTION

This module helps you use remote indexes via WebService::Lucene in your
Catalyst application.

=head1 METHODS

=head2 COMPONENT( )

passes your config options to L<WebService::Lucene>'s C<new> method.

=cut

sub COMPONENT {
    my ( $class, $c, $config ) = @_;
    my $self = $class->new( $config->{ server } );

    $self->config( $self->merge_config_hashes( $self->config, $config ) );

    return $self;
}

=head1 SEE ALSO

=over 4

=item * L<Catalyst>

=item * L<WebService::Lucene>

=back

=head1 AUTHORS

Brian Cassidy E<lt>bricas@cpan.orgE<gt>

Adam Paynter E<lt>adapay@cpan.orgE<gt>

=head1 COPYRIGHT AND LICENSE

Copyright 2006-2009 National Adult Literacy Database

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

=cut

1;