Catalyst-Authentication-Credential-HTTP-Proxy
view release on metacpan or search on metacpan
lib/Catalyst/Authentication/Credential/HTTP/Proxy/User.pm view on Meta::CPAN
package Catalyst::Authentication::Credential::HTTP::Proxy::User;
use strict;
use warnings;
use base 'LWP::UserAgent';
sub credentials {
my ($self,$user,$pass)=@_;
@{$self->{credentials}}=($user,$pass);
}
sub get_basic_credentials {
my $self = shift;
return @{$self->{credentials}};
}
1;
=head1 NAME
Catalyst::Authentication::Credential::HTTP::Proxy::User - Wrapper for LWP::UserAgent
=head1 DESCRIPTION
A thin wrapper for L<LWP::UserAgent> to make basic auth simpler.
=head1 METHODS
=head2 credentials
now takes just a username and password
=head2 get_basic_credentials
Returns the set credentials, takes no options.
=head1 AUTHOR
Marcus Ramberg <mramberg@cpan.org>
=head1 LICENSE
This software is licensed under the same terms as perl itself.
=cut
( run in 1.550 second using v1.01-cache-2.11-cpan-97f6503c9c8 )