package move to o.a.a.r module redback-users-ldap
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1310834 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
49d699e0f9
commit
8c2e9c857e
@ -30,7 +30,7 @@
|
||||
import org.codehaus.plexus.redback.common.ldap.connection.LdapConnectionFactory;
|
||||
import org.codehaus.plexus.redback.common.ldap.connection.LdapException;
|
||||
import org.codehaus.plexus.redback.configuration.UserConfiguration;
|
||||
import org.codehaus.plexus.redback.users.ldap.service.LdapCacheService;
|
||||
import org.apache.archiva.redback.users.ldap.service.LdapCacheService;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
@ -20,14 +20,11 @@
|
||||
*/
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import org.codehaus.plexus.cache.builder.CacheBuilder;
|
||||
import org.codehaus.plexus.redback.authentication.AuthenticationResult;
|
||||
import org.codehaus.plexus.redback.authentication.PasswordBasedAuthenticationDataSource;
|
||||
import org.codehaus.plexus.redback.common.ldap.LdapUser;
|
||||
import org.codehaus.plexus.redback.common.ldap.connection.LdapConnection;
|
||||
import org.codehaus.plexus.redback.policy.PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.policy.encoders.SHA1PasswordEncoder;
|
||||
import org.codehaus.plexus.redback.users.ldap.service.LdapCacheService;
|
||||
import org.apache.archiva.redback.users.ldap.service.LdapCacheService;
|
||||
import org.codehaus.redback.components.apacheds.ApacheDs;
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
@ -46,7 +43,6 @@
|
||||
import javax.naming.directory.DirContext;
|
||||
import javax.naming.directory.InitialDirContext;
|
||||
import java.util.Calendar;
|
||||
import java.util.Date;
|
||||
|
||||
@RunWith( SpringJUnit4ClassRunner.class )
|
||||
@ContextConfiguration( locations = "classpath*:/META-INF/spring-context.xml" )
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.codehaus.plexus.redback.users.ldap;
|
||||
package org.apache.archiva.redback.users.ldap;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
@ -30,9 +30,9 @@
|
||||
import org.codehaus.plexus.redback.common.ldap.connection.LdapConnectionFactory;
|
||||
import org.codehaus.plexus.redback.common.ldap.connection.LdapException;
|
||||
import org.apache.archiva.redback.users.UserQuery;
|
||||
import org.codehaus.plexus.redback.users.ldap.ctl.LdapController;
|
||||
import org.codehaus.plexus.redback.users.ldap.ctl.LdapControllerException;
|
||||
import org.codehaus.plexus.redback.users.ldap.service.LdapCacheService;
|
||||
import org.apache.archiva.redback.users.ldap.ctl.LdapController;
|
||||
import org.apache.archiva.redback.users.ldap.ctl.LdapControllerException;
|
||||
import org.apache.archiva.redback.users.ldap.service.LdapCacheService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.inject.Inject;
|
@ -1,4 +1,4 @@
|
||||
package org.codehaus.plexus.redback.users.ldap;
|
||||
package org.apache.archiva.redback.users.ldap;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
@ -1,4 +1,4 @@
|
||||
package org.codehaus.plexus.redback.users.ldap.ctl;
|
||||
package org.apache.archiva.redback.users.ldap.ctl;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
@ -39,7 +39,7 @@
|
||||
import org.codehaus.plexus.redback.common.ldap.LdapUserMapper;
|
||||
import org.codehaus.plexus.redback.common.ldap.MappingException;
|
||||
import org.codehaus.plexus.redback.common.ldap.UserMapper;
|
||||
import org.codehaus.plexus.redback.users.ldap.LdapUserQuery;
|
||||
import org.apache.archiva.redback.users.ldap.LdapUserQuery;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Service;
|
||||
@ -191,7 +191,7 @@ public Collection<User> getUsers( DirContext context )
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.codehaus.plexus.redback.users.ldap.ctl.LdapControllerI#getUsersByQuery(org.codehaus.plexus.redback.users.ldap.LdapUserQuery, javax.naming.directory.DirContext)
|
||||
* @see org.codehaus.plexus.redback.users.ldap.ctl.LdapControllerI#getUsersByQuery(org.apache.archiva.redback.users.ldap.LdapUserQuery, javax.naming.directory.DirContext)
|
||||
*/
|
||||
public List<User> getUsersByQuery( LdapUserQuery query, DirContext context )
|
||||
throws LdapControllerException, MappingException
|
@ -1,4 +1,4 @@
|
||||
package org.codehaus.plexus.redback.users.ldap.ctl;
|
||||
package org.apache.archiva.redback.users.ldap.ctl;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
@ -22,7 +22,7 @@
|
||||
import org.apache.archiva.redback.users.User;
|
||||
import org.codehaus.plexus.redback.common.ldap.LdapUser;
|
||||
import org.codehaus.plexus.redback.common.ldap.MappingException;
|
||||
import org.codehaus.plexus.redback.users.ldap.LdapUserQuery;
|
||||
import org.apache.archiva.redback.users.ldap.LdapUserQuery;
|
||||
|
||||
import javax.naming.directory.DirContext;
|
||||
import java.util.Collection;
|
@ -1,4 +1,4 @@
|
||||
package org.codehaus.plexus.redback.users.ldap.ctl;
|
||||
package org.apache.archiva.redback.users.ldap.ctl;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
@ -1,4 +1,4 @@
|
||||
package org.codehaus.plexus.redback.users.ldap.service;
|
||||
package org.apache.archiva.redback.users.ldap.service;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
@ -19,6 +19,7 @@
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
import org.apache.archiva.redback.users.ldap.service.LdapCacheService;
|
||||
import org.codehaus.plexus.cache.builder.CacheBuilder;
|
||||
import org.codehaus.plexus.redback.common.ldap.LdapUser;
|
||||
import org.springframework.stereotype.Service;
|
||||
@ -97,7 +98,7 @@ public boolean removeLdapUserDn( String username )
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.codehaus.plexus.redback.users.ldap.service.LdapCacheService#removeAllLdapUserDn()
|
||||
* @see org.apache.archiva.redback.users.ldap.service.LdapCacheService#removeAllLdapUserDn()
|
||||
*/
|
||||
public void removeAllLdapUserDn()
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
package org.codehaus.plexus.redback.users.ldap.service;
|
||||
package org.apache.archiva.redback.users.ldap.service;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
@ -29,7 +29,7 @@
|
||||
|
||||
<context:annotation-config />
|
||||
<context:component-scan
|
||||
base-package="org.codehaus.plexus.redback.users.ldap"/>
|
||||
base-package="org.apache.archiva.redback.users.ldap"/>
|
||||
|
||||
<!-- REDBACK-289/MRM-1488 -->
|
||||
<!-- Cache for LDAP users. Data is refreshed every 3 mins. -->
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.codehaus.plexus.redback.users.ldap;
|
||||
package org.apache.archiva.redback.users.ldap;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
@ -27,7 +27,7 @@
|
||||
import org.codehaus.plexus.redback.policy.encoders.SHA1PasswordEncoder;
|
||||
import org.apache.archiva.redback.users.UserManager;
|
||||
import org.apache.archiva.redback.users.UserNotFoundException;
|
||||
import org.codehaus.plexus.redback.users.ldap.service.LdapCacheService;
|
||||
import org.apache.archiva.redback.users.ldap.service.LdapCacheService;
|
||||
import org.codehaus.redback.components.apacheds.ApacheDs;
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
@ -1,4 +1,4 @@
|
||||
package org.codehaus.plexus.redback.users.ldap.service;
|
||||
package org.apache.archiva.redback.users.ldap.service;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
@ -20,6 +20,7 @@
|
||||
*/
|
||||
|
||||
import junit.framework.TestCase;
|
||||
import org.apache.archiva.redback.users.ldap.service.LdapCacheService;
|
||||
import org.codehaus.plexus.redback.common.ldap.LdapUser;
|
||||
import org.junit.After;
|
||||
import org.junit.Test;
|
Loading…
x
Reference in New Issue
Block a user