| | |
| | | import org.opends.server.api.EntryCache; |
| | | import org.opends.server.api.MonitorData; |
| | | import org.opends.server.core.DirectoryServer; |
| | | import org.opends.server.core.ServerContext; |
| | | import org.forgerock.opendj.ldap.DN; |
| | | import org.opends.server.types.Entry; |
| | | import org.opends.server.types.InitializationException; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public void initializeEntryCache(EntryCacheCfg configEntry) |
| | | public void initializeEntryCache(ServerContext serverContext, EntryCacheCfg configEntry) |
| | | throws ConfigException, InitializationException |
| | | { |
| | | // No implementation required. |
| | |
| | | } |
| | | |
| | | @Override |
| | | public void clearSubtree(DN baseDN) |
| | | { |
| | | for (EntryCache<?> entryCache : cacheOrder) { |
| | | entryCache.clearSubtree(baseDN); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void handleLowMemory() |
| | | { |
| | | for (EntryCache<?> entryCache : cacheOrder) { |