mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-24 04:52:16 +00:00
Fix NPE problems with patch provided by Karel Miarka.
This commit is contained in:
parent
d435598e37
commit
6867efd6ac
@ -1,4 +1,9 @@
|
||||
Changes in version 0.6 (2004-xx-xx)
|
||||
Changes in version 0.x (2004-xx-xx)
|
||||
-----------------------------------
|
||||
|
||||
* Fixed EH-CACHE-based caching implementation behaviour when cache exists
|
||||
|
||||
Changes in version 0.6 (2004-08-09)
|
||||
-----------------------------------
|
||||
|
||||
* Added domain object instance access control list (ACL) packages
|
||||
|
@ -106,6 +106,7 @@ public class EhCacheBasedAclEntryCache implements BasicAclEntryCache,
|
||||
public void afterPropertiesSet() throws Exception {
|
||||
if (CacheManager.getInstance().cacheExists(CACHE_NAME)) {
|
||||
// don’t remove the cache
|
||||
cache = CacheManager.getInstance().getCache(CACHE_NAME);
|
||||
} else {
|
||||
manager = CacheManager.create();
|
||||
|
||||
|
@ -96,6 +96,7 @@ public class EhCacheBasedTicketCache implements StatelessTicketCache,
|
||||
public void afterPropertiesSet() throws Exception {
|
||||
if (CacheManager.getInstance().cacheExists(CACHE_NAME)) {
|
||||
// don’t remove the cache
|
||||
cache = CacheManager.getInstance().getCache(CACHE_NAME);
|
||||
} else {
|
||||
manager = CacheManager.create();
|
||||
|
||||
|
@ -97,6 +97,7 @@ public class EhCacheBasedUserCache implements UserCache, InitializingBean,
|
||||
public void afterPropertiesSet() throws Exception {
|
||||
if (CacheManager.getInstance().cacheExists(CACHE_NAME)) {
|
||||
// don’t remove the cache
|
||||
cache = CacheManager.getInstance().getCache(CACHE_NAME);
|
||||
} else {
|
||||
manager = CacheManager.create();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user