Compatibility shims
Jay Kuri [Wed, 5 Dec 2007 06:06:30 +0000 (06:06 +0000)]
lib/Catalyst/Plugin/Authentication/Credential/Password.pm
lib/Catalyst/Plugin/Authentication/Store/Minimal.pm
lib/Catalyst/Plugin/Authentication/User.pm [new file with mode: 0644]
lib/Catalyst/Plugin/Authentication/User/Hash.pm [new file with mode: 0644]

index dd0662a..b7f5b88 100644 (file)
@@ -20,6 +20,8 @@ Catalyst::Plugin::Authentication::Credential::Password - Compatibility shim
 THIS IS A COMPATIBILITY SHIM.  It allows old configurations of Catalyst
 Authentication to work without code changes.  
 
+B<DO NOT USE IT IN ANY NEW CODE!>
+
 Please see L<Catalyst::Authentication::Credential::Password> for more information.
 
 
index 7793b59..bc4a32e 100644 (file)
@@ -20,5 +20,7 @@ Catalyst::Plugin::Authentication::Store::Minimal - Compatibility shim
 THIS IS A COMPATIBILITY SHIM.  It allows old configurations of Catalyst
 Authentication to work without code changes.  
 
+B<DO NOT USE IT IN ANY NEW CODE!>
+
 Please see L<Catalyst::Authentication::Store::Minimal> for more information.
 
diff --git a/lib/Catalyst/Plugin/Authentication/User.pm b/lib/Catalyst/Plugin/Authentication/User.pm
new file mode 100644 (file)
index 0000000..4dad8d0
--- /dev/null
@@ -0,0 +1,25 @@
+package Catalyst::Plugin::Authentication::User;
+
+use strict;
+use warnings;
+
+use base qw/Catalyst::Authentication::User/;
+
+__PACKAGE__;
+
+__END__
+
+=pod
+
+=head1 NAME
+
+Catalyst::Plugin::Authentication::User- Compatibility shim
+
+=head1 DESCRIPTION
+
+THIS IS A COMPATIBILITY SHIM.  It allows old configurations of Catalyst
+Authentication to work without code changes.  
+
+B<DO NOT USE IT IN ANY NEW CODE!>
+
+Please see L<Catalyst::Authentication::User> for more information.
diff --git a/lib/Catalyst/Plugin/Authentication/User/Hash.pm b/lib/Catalyst/Plugin/Authentication/User/Hash.pm
new file mode 100644 (file)
index 0000000..563c763
--- /dev/null
@@ -0,0 +1,25 @@
+package Catalyst::Plugin::Authentication::User::Hash;
+
+use strict;
+use warnings;
+
+use base qw/Catalyst::Authentication::User::Hash/;
+
+__PACKAGE__;
+
+__END__
+
+=pod
+
+=head1 NAME
+
+Catalyst::Plugin::Authentication::User::Hash - Compatibility shim
+
+=head1 DESCRIPTION
+
+THIS IS A COMPATIBILITY SHIM.  It allows old configurations of Catalyst
+Authentication to work without code changes.  
+
+B<DO NOT USE IT IN ANY NEW CODE!>
+
+Please see L<Catalyst::Authentication::User::Hash> for more information.