All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.appengine.api.datastore.EntityNotFoundException_CustomFieldSerializer Maven / Gradle / Ivy

Go to download

*** THIS VERSION UPLOADED FOR USE WITH CEDAR-COMMON, TO AVOID DEPENDENCIES ON GOOGLE CODE-BASED MAVEN REPOSITORIES. *** The simplest convenient interface to the Google App Engine datastore

The newest version!
package com.google.appengine.api.datastore;

import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;

/**
 * Custom field serializer for the datastore EntityNotFoundException class
 */
public class EntityNotFoundException_CustomFieldSerializer
{
	public static void deserialize(SerializationStreamReader streamReader, EntityNotFoundException instance)
			throws SerializationException
	{
		// already handled in instantiate
	}

	public static EntityNotFoundException instantiate(SerializationStreamReader streamReader)
			throws SerializationException
	{
		// Not sure why this isn't working
		//return new EntityNotFoundException((Key)streamReader.readObject());
		return new EntityNotFoundException(null);
	}

	public static void serialize(SerializationStreamWriter streamWriter, EntityNotFoundException instance)
			throws SerializationException
	{
		//streamWriter.writeObject(instance.getKey());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy