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

com.googlecode.objectify.util.SimpleFutureWrapper 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.googlecode.objectify.util;

import java.util.concurrent.Future;

import com.google.appengine.api.utils.FutureWrapper;

/**
 * Slightly more convenient than the GAE SDK version.
 * 
 * @author Jeff Schnitzer 
 */
abstract public class SimpleFutureWrapper extends FutureWrapper
{
	public SimpleFutureWrapper(Future base)
	{
		super(base);
	}

	@Override
	protected Throwable convertException(Throwable cause)
	{
		return cause;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy