}
private static Object readObjectDescriptionFromStreaming(final ObjectsCache cache,
ObjectsCache.JBossSeralizationInputInterface input) throws IOException {
int reference = input.readObjectReference();
StreamingClass streamingClass = cache.getClassDescriptorStrategy().readClassDescription(cache, input, cache.getClassResolver(), null);
return cache.getObjectDescriptorStrategy().readObject(input, cache, streamingClass, reference);
}