SEC-552: Removed accidentally commited incomplete caching-related classes.

This commit is contained in:
Luke Taylor 2008-02-05 16:59:41 +00:00
parent b82fbb698d
commit 2c0c731aaa
3 changed files with 0 additions and 30 deletions

View File

@ -1,8 +0,0 @@
package org.springframework.security.userdetails;
/**
* @author Luke Taylor
* @version $Id$
*/
public interface CachingUserDetailsService extends UserDetailsService, UserDetailsCache {
}

View File

@ -1,14 +0,0 @@
package org.springframework.security.userdetails;
/**
* @author Luke Taylor
* @version $Id$
*/
public interface UserDetailsCache {
boolean userIsCached(String username);
void removeUserFromCache(String username);
void clearCache();
}

View File

@ -1,8 +0,0 @@
package org.springframework.security.userdetails.decorator;
/**
* @author Luke Taylor
* @version $Id$
*/
public class CacheEnabledUserDetailsService {
}