package move to o.a.a.r module redback-policy
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1310894 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2348016ffa
commit
12919d4171
|
@ -19,8 +19,8 @@ package org.apache.archiva.redback.authentication;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
|
|
@ -19,11 +19,8 @@ package org.apache.archiva.redback.authentication;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.authentication.AuthenticationDataSource;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationResult;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
|
||||
/**
|
||||
* Authenticator:
|
||||
|
|
|
@ -19,13 +19,8 @@ package org.apache.archiva.redback.authentication;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.authentication.AuthenticationDataSource;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationManager;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationResult;
|
||||
import org.apache.archiva.redback.authentication.Authenticator;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.springframework.context.ApplicationContext;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
|
|
|
@ -22,9 +22,8 @@ package org.apache.archiva.redback.authentication.ldap;
|
|||
import junit.framework.TestCase;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationResult;
|
||||
import org.apache.archiva.redback.authentication.PasswordBasedAuthenticationDataSource;
|
||||
import org.apache.archiva.redback.authentication.ldap.LdapBindAuthenticator;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.policy.encoders.SHA1PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.encoders.SHA1PasswordEncoder;
|
||||
import org.apache.archiva.redback.users.ldap.service.LdapCacheService;
|
||||
import org.codehaus.redback.components.apacheds.ApacheDs;
|
||||
import org.junit.After;
|
||||
|
|
|
@ -24,7 +24,7 @@ import org.apache.archiva.redback.authentication.AuthenticationException;
|
|||
import org.apache.archiva.redback.authentication.AuthenticationResult;
|
||||
import org.apache.archiva.redback.authentication.Authenticator;
|
||||
import org.apache.archiva.redback.authentication.PasswordBasedAuthenticationDataSource;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
|
|
|
@ -19,9 +19,9 @@ package org.codehaus.redback.integration.checks.security;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.role.RoleManager;
|
||||
import org.codehaus.plexus.redback.role.RoleManagerException;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
|
|
|
@ -20,12 +20,12 @@ package org.codehaus.redback.integration.filter.authentication;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationDataSource;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationResult;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.system.SecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystemConstants;
|
||||
|
|
|
@ -26,11 +26,11 @@ import javax.servlet.http.HttpServletResponse;
|
|||
import javax.servlet.http.HttpSession;
|
||||
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.commons.codec.binary.Base64;
|
||||
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.system.SecuritySession;
|
||||
import org.codehaus.plexus.util.StringUtils;
|
||||
import org.codehaus.redback.integration.filter.authentication.HttpAuthenticator;
|
||||
|
|
|
@ -20,12 +20,12 @@ package org.codehaus.redback.integration.filter.authentication.digest;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.commons.codec.binary.Base64;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationResult;
|
||||
import org.apache.archiva.redback.authentication.TokenBasedAuthenticationDataSource;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.codehaus.plexus.util.StringUtils;
|
||||
|
|
|
@ -35,8 +35,8 @@ import javax.mail.internet.MimeMessage;
|
|||
|
||||
import org.apache.archiva.redback.configuration.UserConfiguration;
|
||||
import org.apache.archiva.redback.keys.AuthenticationKey;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.policy.UserValidationSettings;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.UserValidationSettings;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
import org.codehaus.plexus.util.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
|
|
|
@ -28,7 +28,7 @@ import org.apache.archiva.redback.keys.AuthenticationKey;
|
|||
import org.apache.archiva.redback.keys.KeyManager;
|
||||
import org.apache.archiva.redback.keys.KeyManagerException;
|
||||
import org.apache.archiva.redback.keys.KeyNotFoundException;
|
||||
import org.codehaus.plexus.redback.policy.CookieSettings;
|
||||
import org.apache.archiva.redback.policy.CookieSettings;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
import org.codehaus.plexus.util.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
|
|
|
@ -23,9 +23,9 @@ import junit.framework.TestCase;
|
|||
import net.sf.ehcache.CacheManager;
|
||||
import org.apache.archiva.redback.keys.AuthenticationKey;
|
||||
import org.apache.archiva.redback.keys.KeyManager;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.jdo.DefaultConfigurableJdoFactory;
|
||||
import org.apache.archiva.redback.keys.KeyManagerException;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.jpox.SchemaTool;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
|
|
@ -23,10 +23,10 @@ import java.util.HashSet;
|
|||
import java.util.Iterator;
|
||||
import java.util.Set;
|
||||
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.rbac.Permission;
|
||||
import org.codehaus.plexus.redback.rbac.RBACManager;
|
||||
import org.codehaus.plexus.redback.rbac.RbacManagerException;
|
||||
|
|
|
@ -20,8 +20,8 @@ package org.codehaus.redback.jsecurity;
|
|||
*/
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.rbac.Operation;
|
||||
import org.codehaus.plexus.redback.rbac.Permission;
|
||||
import org.codehaus.plexus.redback.rbac.RBACManager;
|
||||
|
|
|
@ -20,14 +20,14 @@ package org.codehaus.redback.rest.services;
|
|||
*/
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.keys.KeyManager;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.archiva.redback.authentication.PasswordBasedAuthenticationDataSource;
|
||||
import org.apache.archiva.redback.keys.AuthenticationKey;
|
||||
import org.codehaus.plexus.redback.keys.jdo.JdoAuthenticationKey;
|
||||
import org.apache.archiva.redback.keys.memory.MemoryAuthenticationKey;
|
||||
import org.apache.archiva.redback.keys.memory.MemoryKeyManager;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.codehaus.plexus.redback.system.SecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
import org.codehaus.redback.integration.filter.authentication.HttpAuthenticator;
|
||||
|
|
|
@ -18,13 +18,13 @@ package org.codehaus.redback.rest.services;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolationException;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.apache.archiva.redback.keys.AuthenticationKey;
|
||||
import org.apache.archiva.redback.keys.KeyManagerException;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolationException;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.codehaus.redback.integration.filter.authentication.HttpAuthenticator;
|
||||
|
|
|
@ -22,6 +22,8 @@ package org.codehaus.redback.rest.services;
|
|||
import net.sf.ehcache.CacheManager;
|
||||
import org.apache.archiva.redback.configuration.UserConfiguration;
|
||||
import org.apache.archiva.redback.keys.AuthenticationKey;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
|
@ -31,10 +33,8 @@ import org.apache.archiva.redback.authentication.TokenBasedAuthenticationDataSou
|
|||
import org.apache.archiva.redback.keys.KeyManager;
|
||||
import org.apache.archiva.redback.keys.KeyManagerException;
|
||||
import org.apache.archiva.redback.keys.KeyNotFoundException;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.rbac.RBACManager;
|
||||
import org.codehaus.plexus.redback.rbac.RbacManagerException;
|
||||
import org.codehaus.plexus.redback.rbac.RbacObjectNotFoundException;
|
||||
|
|
|
@ -20,6 +20,7 @@ package org.codehaus.redback.rest.services.interceptors;
|
|||
*/
|
||||
|
||||
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.cxf.jaxrs.ext.RequestHandler;
|
||||
|
@ -28,8 +29,7 @@ import org.apache.cxf.message.Message;
|
|||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationResult;
|
||||
import org.apache.archiva.redback.authorization.RedbackAuthorization;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.system.SecuritySession;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.codehaus.redback.integration.filter.authentication.HttpAuthenticationException;
|
||||
|
|
|
@ -18,8 +18,8 @@ package org.codehaus.redback.rest.services.interceptors;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolationException;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolationException;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.codehaus.redback.rest.api.model.ErrorMessage;
|
||||
import org.codehaus.redback.rest.api.model.RedbackRestError;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
|
|
@ -18,11 +18,11 @@ package org.codehaus.redback.rest.services.utils;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolationException;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolationException;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
import org.codehaus.redback.rest.api.model.ErrorMessage;
|
||||
import org.codehaus.redback.rest.api.services.RedbackServiceException;
|
||||
|
|
|
@ -23,8 +23,8 @@ package org.codehaus.plexus.redback.struts2.action;
|
|||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import org.apache.struts2.ServletActionContext;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolationException;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolationException;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.codehaus.plexus.redback.system.SecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystemConstants;
|
||||
import org.codehaus.redback.integration.interceptor.SecureAction;
|
||||
|
|
|
@ -20,7 +20,7 @@ package org.codehaus.plexus.redback.struts2.action;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolationException;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolationException;
|
||||
import org.codehaus.plexus.redback.rbac.Permission;
|
||||
import org.codehaus.plexus.redback.rbac.RBACManager;
|
||||
import org.codehaus.plexus.redback.rbac.RbacManagerException;
|
||||
|
|
|
@ -21,8 +21,8 @@ package org.codehaus.plexus.redback.struts2.action;
|
|||
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolationException;
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolationException;
|
||||
import org.codehaus.plexus.redback.system.DefaultSecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystemConstants;
|
||||
|
|
|
@ -20,6 +20,7 @@ package org.codehaus.plexus.redback.struts2.action;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.redback.keys.AuthenticationKey;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.struts2.ServletActionContext;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationConstants;
|
||||
|
@ -31,8 +32,7 @@ import org.apache.archiva.redback.authentication.TokenBasedAuthenticationDataSou
|
|||
import org.apache.archiva.redback.configuration.UserConfiguration;
|
||||
import org.apache.archiva.redback.keys.KeyManagerException;
|
||||
import org.apache.archiva.redback.keys.KeyNotFoundException;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.codehaus.plexus.redback.system.SecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
|
|
|
@ -19,10 +19,10 @@ package org.codehaus.plexus.redback.struts2.action;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolationException;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolationException;
|
||||
import org.codehaus.plexus.redback.system.SecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
|
|
|
@ -20,11 +20,11 @@ package org.codehaus.plexus.redback.struts2.action;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.redback.keys.KeyManager;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.archiva.redback.keys.AuthenticationKey;
|
||||
import org.apache.archiva.redback.keys.KeyManagerException;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.codehaus.plexus.util.StringUtils;
|
||||
|
|
|
@ -20,9 +20,9 @@ package org.codehaus.plexus.redback.struts2.action;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.redback.keys.AuthenticationKey;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.keys.KeyManagerException;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.role.RoleManager;
|
||||
import org.codehaus.plexus.redback.role.RoleManagerException;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
|
|
|
@ -21,14 +21,14 @@ package org.codehaus.plexus.redback.struts2.action.admin;
|
|||
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.configuration.UserConfiguration;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.struts2.ServletActionContext;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationConstants;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationDataSource;
|
||||
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.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.role.RoleManager;
|
||||
import org.codehaus.plexus.redback.role.RoleManagerException;
|
||||
import org.codehaus.plexus.redback.struts2.action.AuditEvent;
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.codehaus.plexus.redback.struts2.action.admin;
|
|||
|
||||
import java.util.Arrays;
|
||||
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.rbac.Resource;
|
||||
import org.codehaus.plexus.redback.struts2.action.AbstractUserCredentialsAction;
|
||||
import org.codehaus.plexus.redback.struts2.action.AuditEvent;
|
||||
|
|
|
@ -19,11 +19,11 @@ package org.codehaus.plexus.redback.struts2.action.admin;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.commons.lang.StringEscapeUtils;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolationException;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolationException;
|
||||
import org.codehaus.plexus.redback.rbac.RBACManager;
|
||||
import org.codehaus.plexus.redback.rbac.RbacManagerException;
|
||||
import org.codehaus.plexus.redback.rbac.Resource;
|
||||
|
|
|
@ -23,12 +23,12 @@ import com.opensymphony.xwork2.ActionContext;
|
|||
import com.opensymphony.xwork2.ActionInvocation;
|
||||
import com.opensymphony.xwork2.interceptor.Interceptor;
|
||||
import org.apache.archiva.redback.keys.AuthenticationKey;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.struts2.ServletActionContext;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationResult;
|
||||
import org.apache.archiva.redback.authentication.TokenBasedAuthenticationDataSource;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.codehaus.plexus.redback.system.SecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystemConstants;
|
||||
|
|
|
@ -28,7 +28,7 @@ import javax.servlet.http.HttpServletRequest;
|
|||
import org.apache.archiva.redback.configuration.UserConfiguration;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.struts2.ServletActionContext;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.system.DefaultSecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
|
|
|
@ -27,15 +27,15 @@ import static org.easymock.EasyMock.verify;
|
|||
|
||||
import java.util.HashMap;
|
||||
|
||||
import org.apache.archiva.redback.policy.DefaultUserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.UserValidationSettings;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationDataSource;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationResult;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.DefaultUserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.codehaus.plexus.redback.policy.UserValidationSettings;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.system.DefaultSecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySession;
|
||||
import org.codehaus.plexus.redback.system.SecuritySystem;
|
||||
|
|
|
@ -20,12 +20,12 @@ package org.codehaus.plexus.redback.struts2.action.admin;
|
|||
*/
|
||||
|
||||
import net.sf.ehcache.CacheManager;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.struts2.StrutsSpringTestCase;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
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.rbac.RBACManager;
|
||||
import org.codehaus.plexus.redback.rbac.RbacManagerException;
|
||||
import org.codehaus.plexus.redback.rbac.RbacObjectInvalidException;
|
||||
|
|
|
@ -25,8 +25,7 @@ import com.opensymphony.xwork2.ActionProxy;
|
|||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.archiva.redback.authorization.AuthorizationResult;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.rbac.RbacManagerException;
|
||||
import org.codehaus.plexus.redback.rbac.RbacObjectInvalidException;
|
||||
import org.codehaus.plexus.redback.rbac.Role;
|
||||
|
@ -489,7 +488,7 @@ public class AssignmentsActionTest
|
|||
* Check security - show should succeed and display all roles, even without 'user-management-role-grant' or
|
||||
* 'user-management-user-role' for the user administrators.
|
||||
*
|
||||
* @throws MustChangePasswordException
|
||||
* @throws org.apache.archiva.redback.policy.MustChangePasswordException
|
||||
*/
|
||||
@Test
|
||||
public void testSystemAdminCanShowRoles()
|
||||
|
|
|
@ -21,11 +21,11 @@ package org.codehaus.plexus.redback.struts2.action.admin;
|
|||
|
||||
import com.opensymphony.xwork2.Action;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationResult;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.codehaus.plexus.redback.rbac.RbacManagerException;
|
||||
import org.codehaus.plexus.redback.rbac.RbacObjectInvalidException;
|
||||
import org.codehaus.plexus.redback.rbac.RbacObjectNotFoundException;
|
||||
|
|
|
@ -28,8 +28,8 @@ import org.apache.archiva.redback.keys.AuthenticationKey;
|
|||
import org.apache.archiva.redback.keys.KeyManager;
|
||||
import org.apache.archiva.redback.keys.KeyManagerException;
|
||||
import org.apache.archiva.redback.keys.KeyNotFoundException;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
|
@ -21,7 +21,7 @@ package org.codehaus.plexus.redback.policy;
|
|||
|
||||
import org.apache.archiva.redback.configuration.UserConfiguration;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.codehaus.plexus.redback.policy.rules.MustHavePasswordRule;
|
||||
import org.apache.archiva.redback.policy.rules.MustHavePasswordRule;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.context.ApplicationContext;
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
import org.apache.archiva.redback.users.User;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
|
@ -19,6 +19,7 @@ package org.codehaus.plexus.redback.policy;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.AbstractCookieSettings;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.PostConstruct;
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
|
@ -19,6 +19,7 @@ package org.codehaus.plexus.redback.policy;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.AbstractCookieSettings;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.PostConstruct;
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -197,7 +197,7 @@ public interface UserSecurityPolicy
|
|||
* Extension Point - Test if user has excessive logins
|
||||
*
|
||||
* @param user the user to test excessive logins against.
|
||||
* @throws AccountLockedException if the number of logins was exceeded
|
||||
* @throws org.apache.archiva.redback.policy.AccountLockedException if the number of logins was exceeded
|
||||
*/
|
||||
void extensionExcessiveLoginAttempts( User user )
|
||||
throws AccountLockedException;
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.encoders;
|
||||
package org.apache.archiva.redback.policy.encoders;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -16,11 +16,11 @@ package org.codehaus.plexus.redback.policy.encoders;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.PasswordEncodingException;
|
||||
import org.apache.archiva.redback.users.Messages;
|
||||
import org.apache.commons.codec.binary.Base64;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncodingException;
|
||||
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.security.MessageDigest;
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.encoders;
|
||||
package org.apache.archiva.redback.policy.encoders;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -16,7 +16,7 @@ package org.codehaus.plexus.redback.policy.encoders;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.encoders;
|
||||
package org.apache.archiva.redback.policy.encoders;
|
||||
|
||||
/*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
|
@ -16,7 +16,7 @@ package org.codehaus.plexus.redback.policy.encoders;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.encoders;
|
||||
package org.apache.archiva.redback.policy.encoders;
|
||||
|
||||
/*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
|
@ -16,7 +16,7 @@ package org.codehaus.plexus.redback.policy.encoders;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.rules;
|
||||
package org.apache.archiva.redback.policy.rules;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -17,7 +17,7 @@ package org.codehaus.plexus.redback.policy.rules;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.redback.configuration.UserConfiguration;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRule;
|
||||
import org.apache.archiva.redback.policy.PasswordRule;
|
||||
|
||||
import javax.inject.Inject;
|
||||
import javax.inject.Named;
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.rules;
|
||||
package org.apache.archiva.redback.policy.rules;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -16,9 +16,9 @@ package org.codehaus.plexus.redback.policy.rules;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.PostConstruct;
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.rules;
|
||||
package org.apache.archiva.redback.policy.rules;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -16,8 +16,8 @@ package org.codehaus.plexus.redback.policy.rules;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.springframework.stereotype.Service;
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.rules;
|
||||
package org.apache.archiva.redback.policy.rules;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -16,9 +16,9 @@ package org.codehaus.plexus.redback.policy.rules;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.rules;
|
||||
package org.apache.archiva.redback.policy.rules;
|
||||
|
||||
/*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
|
@ -16,8 +16,8 @@ package org.codehaus.plexus.redback.policy.rules;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.springframework.stereotype.Service;
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.rules;
|
||||
package org.apache.archiva.redback.policy.rules;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -17,8 +17,8 @@ package org.codehaus.plexus.redback.policy.rules;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.rules;
|
||||
package org.apache.archiva.redback.policy.rules;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -16,8 +16,8 @@ package org.codehaus.plexus.redback.policy.rules;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.springframework.stereotype.Service;
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy.rules;
|
||||
package org.apache.archiva.redback.policy.rules;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -16,8 +16,8 @@ package org.codehaus.plexus.redback.policy.rules;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.codehaus.plexus.redback.policy.PasswordRuleViolations;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.PasswordRuleViolations;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
|
@ -28,6 +28,6 @@
|
|||
default-lazy-init="true">
|
||||
|
||||
<context:annotation-config />
|
||||
<context:component-scan base-package="org.codehaus.plexus.redback.policy"/>
|
||||
<context:component-scan base-package="org.apache.archiva.redback.policy"/>
|
||||
|
||||
</beans>
|
|
@ -1,4 +1,4 @@
|
|||
package org.codehaus.plexus.redback.policy;
|
||||
package org.apache.archiva.redback.policy;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2006 The Apache Software Foundation.
|
||||
|
@ -17,6 +17,7 @@ package org.codehaus.plexus.redback.policy;
|
|||
*/
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
|
@ -20,6 +20,8 @@ package org.codehaus.plexus.redback.system;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.redback.keys.KeyManager;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
|
@ -31,9 +33,7 @@ import org.apache.archiva.redback.authorization.AuthorizationDataSource;
|
|||
import org.apache.archiva.redback.authorization.AuthorizationException;
|
||||
import org.apache.archiva.redback.authorization.AuthorizationResult;
|
||||
import org.apache.archiva.redback.authorization.Authorizer;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
@ -91,7 +91,7 @@ public class DefaultSecuritySystem
|
|||
* @throws AuthenticationException
|
||||
* @throws UserNotFoundException
|
||||
* @throws MustChangePasswordException
|
||||
* @throws AccountLockedException
|
||||
* @throws org.apache.archiva.redback.policy.AccountLockedException
|
||||
* @throws MustChangePasswordException
|
||||
*/
|
||||
public SecuritySession authenticate( AuthenticationDataSource source )
|
||||
|
|
|
@ -19,15 +19,15 @@ package org.codehaus.plexus.redback.system;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationDataSource;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationException;
|
||||
import org.apache.archiva.redback.authorization.AuthorizationException;
|
||||
import org.apache.archiva.redback.authorization.AuthorizationResult;
|
||||
import org.apache.archiva.redback.keys.KeyManager;
|
||||
import org.codehaus.plexus.redback.policy.AccountLockedException;
|
||||
import org.codehaus.plexus.redback.policy.MustChangePasswordException;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
|
||||
/**
|
||||
|
|
|
@ -20,6 +20,9 @@ package org.apache.archiva.redback.authentication.users;
|
|||
*/
|
||||
|
||||
import org.apache.archiva.redback.authentication.Authenticator;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.archiva.redback.authentication.AuthenticationConstants;
|
||||
|
@ -27,11 +30,8 @@ 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;
|
||||
import org.codehaus.plexus.redback.policy.PolicyViolationException;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.policy.PolicyViolationException;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -67,7 +67,7 @@ public class UserManagerAuthenticator
|
|||
}
|
||||
|
||||
/**
|
||||
* @throws org.codehaus.plexus.redback.policy.AccountLockedException
|
||||
* @throws org.apache.archiva.redback.policy.AccountLockedException
|
||||
*
|
||||
* @throws MustChangePasswordException
|
||||
* @throws MustChangePasswordException
|
||||
|
|
|
@ -21,15 +21,15 @@ package org.apache.archiva.redback.authentication.users;
|
|||
|
||||
import junit.framework.TestCase;
|
||||
import org.apache.archiva.redback.authentication.Authenticator;
|
||||
import org.apache.archiva.redback.policy.MustChangePasswordException;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
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;
|
||||
import org.apache.archiva.redback.policy.AccountLockedException;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
|
|
@ -19,6 +19,7 @@ package org.apache.archiva.redback.users.jdo;
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.AbstractUserManager;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserManagerException;
|
||||
|
@ -27,7 +28,6 @@ import org.codehaus.plexus.jdo.JdoFactory;
|
|||
import org.codehaus.plexus.jdo.PlexusJdoUtils;
|
||||
import org.codehaus.plexus.jdo.PlexusObjectNotFoundException;
|
||||
import org.codehaus.plexus.jdo.PlexusStoreException;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.PermanentUserException;
|
||||
import org.apache.archiva.redback.users.UserQuery;
|
||||
import org.codehaus.plexus.redback.users.jdo.JdoUser;
|
||||
|
|
|
@ -20,11 +20,11 @@ package org.apache.archiva.redback.users.ldap;
|
|||
*/
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import org.apache.archiva.redback.policy.PasswordEncoder;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.common.ldap.connection.LdapConnection;
|
||||
import org.apache.archiva.redback.common.ldap.connection.LdapConnectionFactory;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.policy.encoders.SHA1PasswordEncoder;
|
||||
import org.apache.archiva.redback.policy.encoders.SHA1PasswordEncoder;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.archiva.redback.users.ldap.service.LdapCacheService;
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.apache.archiva.redback.users.memory;
|
|||
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.AbstractUserManager;
|
||||
import org.apache.archiva.redback.users.PermanentUserException;
|
||||
import org.apache.archiva.redback.users.UserQuery;
|
||||
|
|
|
@ -20,10 +20,10 @@ package org.apache.archiva.redback.users.provider.test;
|
|||
*/
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import org.apache.archiva.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.apache.archiva.redback.users.UserQuery;
|
||||
import org.codehaus.plexus.redback.policy.UserSecurityPolicy;
|
||||
import org.apache.archiva.redback.users.PermanentUserException;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.junit.Test;
|
||||
|
|
Loading…
Reference in New Issue