public class ProtostuffCoreGESerializer extends AbstractProtostuffSerializer
{
public MediaContent deserialize(byte[] array) throws Exception
{
MediaContent mediaContent = new MediaContent();
ProtostuffIOUtil.mergeFrom(array, 0, array.length, mediaContent, mediaContent.cachedSchema());
return mediaContent;
}