| | |
| | | public void initializeEntryCache(ConfigEntry configEntry) |
| | | throws ConfigException, InitializationException |
| | | { |
| | | |
| | | // No implementation required. |
| | | } |
| | | |
| | |
| | | */ |
| | | public void finalizeEntryCache() |
| | | { |
| | | |
| | | // No implementation required. |
| | | } |
| | | |
| | |
| | | */ |
| | | public boolean containsEntry(DN entryDN) |
| | | { |
| | | |
| | | // This implementation does not store any entries. |
| | | return false; |
| | | } |
| | |
| | | */ |
| | | public Entry getEntry(DN entryDN) |
| | | { |
| | | |
| | | // This implementation does not store any entries. |
| | | return null; |
| | | } |
| | |
| | | */ |
| | | public long getEntryID(DN entryDN) |
| | | { |
| | | |
| | | // This implementation does not store any entries. |
| | | return -1; |
| | | } |
| | |
| | | */ |
| | | public Entry getEntry(DN entryDN, LockType lockType, List<Lock> lockList) |
| | | { |
| | | |
| | | // This implementation does not store entries. |
| | | return null; |
| | | } |
| | |
| | | public Entry getEntry(Backend backend, long entryID, LockType lockType, |
| | | List<Lock> lockList) |
| | | { |
| | | |
| | | // This implementation does not store entries. |
| | | return null; |
| | | } |
| | |
| | | */ |
| | | public void putEntry(Entry entry, Backend backend, long entryID) |
| | | { |
| | | |
| | | // This implementation does not store entries. |
| | | } |
| | | |
| | |
| | | */ |
| | | public boolean putEntryIfAbsent(Entry entry, Backend backend, long entryID) |
| | | { |
| | | |
| | | // This implementation does not store entries, so we will never have a |
| | | // conflict. |
| | | return true; |
| | |
| | | */ |
| | | public void removeEntry(DN entryDN) |
| | | { |
| | | |
| | | // This implementation does not store entries. |
| | | } |
| | | |
| | |
| | | */ |
| | | public void clear() |
| | | { |
| | | |
| | | // This implementation does not store entries. |
| | | } |
| | | |
| | |
| | | */ |
| | | public void clearBackend(Backend backend) |
| | | { |
| | | |
| | | // This implementation does not store entries. |
| | | } |
| | | |
| | |
| | | */ |
| | | public void clearSubtree(DN baseDN) |
| | | { |
| | | |
| | | // This implementation does not store entries. |
| | | } |
| | | |
| | |
| | | */ |
| | | public void handleLowMemory() |
| | | { |
| | | |
| | | // This implementation does not store entries, so there are no resources |
| | | // that it can free. |
| | | } |