Reload only specific entities (work in progress)

- Remove attempt of reinitializing all components -> will lead to inconsistent states. Call reload on reloadable components instead
This commit is contained in:
ljacqu
2016-03-09 18:39:04 +01:00
parent 4d55bedcaa
commit dfc713fde6
7 changed files with 33 additions and 85 deletions
@@ -64,6 +64,11 @@ public class CacheDataSource implements DataSource {
return cachedAuths;
}
@Override
public void reload() {
source.reload();
}
@Override
public synchronized boolean isAuthAvailable(String user) {
return getAuth(user) != null;