diff options
author | Olivier Lamy <olamy@apache.org> | 2012-04-07 19:55:10 +0000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2012-04-07 19:55:10 +0000 |
commit | 04fd892682a78fbdcfa4613f8aa4ab7d9eab4088 (patch) | |
tree | 1ba27c37d6c17a6b62deaf8b60a67d4818352611 /redback-users | |
parent | aa9c62dfe9098ccbbe10d4077cb03abf54154228 (diff) | |
download | archiva-04fd892682a78fbdcfa4613f8aa4ab7d9eab4088.tar.gz archiva-04fd892682a78fbdcfa4613f8aa4ab7d9eab4088.zip |
package move to o.a.a.r module redback-authentication-api
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1310844 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'redback-users')
2 files changed, 12 insertions, 13 deletions
diff --git a/redback-users/redback-authentication-users/src/main/java/org/apache/archiva/redback/authentication/users/UserManagerAuthenticator.java b/redback-users/redback-authentication-users/src/main/java/org/apache/archiva/redback/authentication/users/UserManagerAuthenticator.java index 9c5dad96d..bc55365f7 100644 --- a/redback-users/redback-authentication-users/src/main/java/org/apache/archiva/redback/authentication/users/UserManagerAuthenticator.java +++ b/redback-users/redback-authentication-users/src/main/java/org/apache/archiva/redback/authentication/users/UserManagerAuthenticator.java @@ -19,14 +19,14 @@ package org.apache.archiva.redback.authentication.users; * under the License. */ +import org.apache.archiva.redback.authentication.Authenticator; import org.apache.archiva.redback.users.UserManager; import org.apache.archiva.redback.users.UserNotFoundException; -import org.codehaus.plexus.redback.authentication.AuthenticationConstants; -import org.codehaus.plexus.redback.authentication.AuthenticationDataSource; -import org.codehaus.plexus.redback.authentication.AuthenticationException; -import org.codehaus.plexus.redback.authentication.AuthenticationResult; -import org.codehaus.plexus.redback.authentication.Authenticator; -import org.codehaus.plexus.redback.authentication.PasswordBasedAuthenticationDataSource; +import org.apache.archiva.redback.authentication.AuthenticationConstants; +import org.apache.archiva.redback.authentication.AuthenticationDataSource; +import org.apache.archiva.redback.authentication.AuthenticationException; +import org.apache.archiva.redback.authentication.AuthenticationResult; +import org.apache.archiva.redback.authentication.PasswordBasedAuthenticationDataSource; import org.codehaus.plexus.redback.policy.AccountLockedException; import org.codehaus.plexus.redback.policy.MustChangePasswordException; import org.codehaus.plexus.redback.policy.PasswordEncoder; @@ -72,7 +72,7 @@ public class UserManagerAuthenticator * @throws MustChangePasswordException * @throws MustChangePasswordException * @throws PolicyViolationException - * @see org.codehaus.plexus.redback.authentication.Authenticator#authenticate(org.codehaus.plexus.redback.authentication.AuthenticationDataSource) + * @see org.apache.archiva.redback.authentication.Authenticator#authenticate(org.apache.archiva.redback.authentication.AuthenticationDataSource) */ public AuthenticationResult authenticate( AuthenticationDataSource ds ) throws AuthenticationException, AccountLockedException, MustChangePasswordException @@ -158,7 +158,7 @@ public class UserManagerAuthenticator } /** - * Returns the wrapped {@link UserManager} used by this {@link Authenticator} + * Returns the wrapped {@link UserManager} used by this {@link org.apache.archiva.redback.authentication.Authenticator} * implementation for authentication. * * @return the userManager diff --git a/redback-users/redback-authentication-users/src/test/java/org/apache/archiva/redback/authentication/users/UserManagerAuthenticatorTest.java b/redback-users/redback-authentication-users/src/test/java/org/apache/archiva/redback/authentication/users/UserManagerAuthenticatorTest.java index 507abb501..bc849a672 100644 --- a/redback-users/redback-authentication-users/src/test/java/org/apache/archiva/redback/authentication/users/UserManagerAuthenticatorTest.java +++ b/redback-users/redback-authentication-users/src/test/java/org/apache/archiva/redback/authentication/users/UserManagerAuthenticatorTest.java @@ -20,14 +20,13 @@ package org.apache.archiva.redback.authentication.users; */ import junit.framework.TestCase; -import org.apache.archiva.redback.authentication.users.UserManagerAuthenticator; +import org.apache.archiva.redback.authentication.Authenticator; import org.apache.archiva.redback.users.User; import org.apache.archiva.redback.users.UserManager; import org.apache.archiva.redback.users.UserNotFoundException; -import org.codehaus.plexus.redback.authentication.AuthenticationException; -import org.codehaus.plexus.redback.authentication.AuthenticationResult; -import org.codehaus.plexus.redback.authentication.Authenticator; -import org.codehaus.plexus.redback.authentication.PasswordBasedAuthenticationDataSource; +import org.apache.archiva.redback.authentication.AuthenticationException; +import org.apache.archiva.redback.authentication.AuthenticationResult; +import org.apache.archiva.redback.authentication.PasswordBasedAuthenticationDataSource; import org.codehaus.plexus.redback.policy.AccountLockedException; import org.codehaus.plexus.redback.policy.MustChangePasswordException; import org.codehaus.plexus.redback.policy.UserSecurityPolicy; |