SEC-552: Removed accidentally commited incomplete caching-related classes.
This commit is contained in:
parent
b82fbb698d
commit
2c0c731aaa
|
@ -1,8 +0,0 @@
|
||||||
package org.springframework.security.userdetails;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author Luke Taylor
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
|
||||||
public interface CachingUserDetailsService extends UserDetailsService, UserDetailsCache {
|
|
||||||
}
|
|
|
@ -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();
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
package org.springframework.security.userdetails.decorator;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author Luke Taylor
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
|
||||||
public class CacheEnabledUserDetailsService {
|
|
||||||
}
|
|
Loading…
Reference in New Issue