}
@Override
public MarshalledEntry load(final Object key) {
if (key instanceof IndexScopedKey) {
final IndexScopedKey indexKey = (IndexScopedKey)key;
DirectoryLoaderAdaptor directoryAdaptor = getDirectory(indexKey);
Object value = directoryAdaptor.load(indexKey);
if (value != null) {
return ctx.getMarshalledEntryFactory().newMarshalledEntry(key, value, null);
}