package move to o.a.a.r

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1310783 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-04-07 15:05:29 +00:00
parent 1d4a4c2f56
commit 4a95bf6d22
8 changed files with 10 additions and 10 deletions

View File

@ -37,7 +37,7 @@ import org.codehaus.plexus.redback.system.SecuritySystem;
import org.codehaus.plexus.redback.system.SecuritySystemConstants;
import org.apache.archiva.redback.users.User;
import org.apache.archiva.redback.users.UserNotFoundException;
import org.codehaus.plexus.redback.users.memory.SimpleUser;
import org.apache.archiva.redback.users.memory.SimpleUser;
import org.junit.After;
import org.junit.Before;
import org.junit.runner.RunWith;

View File

@ -33,7 +33,7 @@ import org.codehaus.plexus.redback.rbac.Role;
import org.codehaus.plexus.redback.system.DefaultSecuritySession;
import org.codehaus.plexus.redback.system.SecuritySession;
import org.codehaus.plexus.redback.system.SecuritySystemConstants;
import org.codehaus.plexus.redback.users.memory.SimpleUser;
import org.apache.archiva.redback.users.memory.SimpleUser;
import org.codehaus.redback.integration.model.AdminEditUserCredentials;
import org.junit.After;
import org.junit.Before;

View File

@ -1,4 +1,4 @@
package org.codehaus.plexus.redback.users.memory;
package org.apache.archiva.redback.users.memory;
/*
* Licensed to the Apache Software Foundation (ASF) under one
@ -26,7 +26,7 @@ import org.apache.archiva.redback.users.AbstractUserManager;
import org.apache.archiva.redback.users.PermanentUserException;
import org.apache.archiva.redback.users.UserQuery;
import org.apache.archiva.redback.users.UserNotFoundException;
import org.codehaus.plexus.redback.users.memory.util.UserSorter;
import org.apache.archiva.redback.users.memory.util.UserSorter;
import org.apache.commons.lang.StringUtils;
import org.springframework.stereotype.Service;

View File

@ -1,4 +1,4 @@
package org.codehaus.plexus.redback.users.memory;
package org.apache.archiva.redback.users.memory;
/*
* Licensed to the Apache Software Foundation (ASF) under one

View File

@ -1,4 +1,4 @@
package org.codehaus.plexus.redback.users.memory;
package org.apache.archiva.redback.users.memory;
/*
* Licensed to the Apache Software Foundation (ASF) under one

View File

@ -1,4 +1,4 @@
package org.codehaus.plexus.redback.users.memory.util;
package org.apache.archiva.redback.users.memory.util;
/*
* Licensed to the Apache Software Foundation (ASF) under one

View File

@ -28,6 +28,6 @@
default-lazy-init="true">
<context:annotation-config />
<context:component-scan base-package="org.codehaus.plexus.redback.users.memory"/>
<context:component-scan base-package="org.apache.archiva.redback.users.memory"/>
</beans>

View File

@ -1,4 +1,4 @@
package org.codehaus.plexus.redback.users;
package org.apache.archiva.redback.users;
/*
* Licensed to the Apache Software Foundation (ASF) under one
@ -20,7 +20,7 @@ package org.codehaus.plexus.redback.users;
*/
import org.apache.archiva.redback.users.UserManager;
import org.codehaus.plexus.redback.users.memory.MemoryUserManager;
import org.apache.archiva.redback.users.memory.MemoryUserManager;
import org.codehaus.plexus.redback.users.provider.test.AbstractUserManagerTestCase;
import org.junit.Before;